diff --git a/tests/step9_try.mal b/tests/step9_try.mal index 168b6327..01fce991 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)))