From e27782ea094599b30f821bb1eac4dc5504de58a4 Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Fri, 6 Mar 2015 07:03:41 -0600 Subject: tests: fix long line error when self-hosted. --- tests/step9_try.mal | 4 ++-- 1 file 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))) -- cgit v1.2.3