aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-03-06 07:03:41 -0600
committerJoel Martin <github@martintribe.org>2015-03-06 07:03:41 -0600
commite27782ea094599b30f821bb1eac4dc5504de58a4 (patch)
treed13ef98c682ddf023ab5d32d25b9090b9b2962b0
parent55a253cbce32b854e4f062798aa90989d4bcda79 (diff)
downloadmal-e27782ea094599b30f821bb1eac4dc5504de58a4.tar.gz
mal-e27782ea094599b30f821bb1eac4dc5504de58a4.zip
tests: fix long line error when self-hosted.
-rw-r--r--tests/step9_try.mal4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/step9_try.mal b/tests/step9_try.mal
index 168b632..01fce99 100644
--- a/tests/step9_try.mal
+++ b/tests/step9_try.mal
@@ -13,8 +13,8 @@
;;;; "exc is:" ["data" "foo"] ;;;;=>7
;;;;=>7
-(try* (throw (list "data" "foo")) (catch* exc (do (prn "err:" exc) 7)))
-; "err:" ("data" "foo")
+(try* (throw (list 1 2 3)) (catch* exc (do (prn "err:" exc) 7)))
+; "err:" (1 2 3)
;=>7
(try* (throw "my exception") (catch* exc (do (prn "exc:" exc) 7)))