1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 13:55:55 +03:00

tests: fix long line error when self-hosted.

This commit is contained in:
Joel Martin 2015-03-06 07:03:41 -06:00
parent 55a253cbce
commit e27782ea09

View File

@ -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)))