aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStuart Sierra <mail@stuartsierra.com>2008-12-23 17:55:40 +0000
committerStuart Sierra <mail@stuartsierra.com>2008-12-23 17:55:40 +0000
commit9868ae29c78db7be03da3bd375c99e392dcb3f1c (patch)
tree885171241cf7a93e504a15b28b7a20ba59d8857b /src
parent5734c1973183de31683d5bd603ef07fde9522405 (diff)
test_clojure/evaluation.clj: expect CompilerException on (eval '(1 2 3))
Diffstat (limited to 'src')
-rw-r--r--src/clojure/contrib/test_clojure/evaluation.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/test_clojure/evaluation.clj b/src/clojure/contrib/test_clojure/evaluation.clj
index b2154fde..c8a5f0ba 100644
--- a/src/clojure/contrib/test_clojure/evaluation.clj
+++ b/src/clojure/contrib/test_clojure/evaluation.clj
@@ -215,7 +215,7 @@
(test-that
"Non-empty lists are considered calls"
- (is (thrown? Exception (eval '(1 2 3))))))
+ (is (thrown? Compiler$CompilerException (eval '(1 2 3))))))
(deftest Macros)