diff options
-rw-r--r-- | test/clojure/test_clojure/compilation.clj | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/test/clojure/test_clojure/compilation.clj b/test/clojure/test_clojure/compilation.clj index 942fed07..fba781ca 100644 --- a/test/clojure/test_clojure/compilation.clj +++ b/test/clojure/test_clojure/compilation.clj @@ -38,13 +38,6 @@ (deftest test-embedded-constants (testing "Embedded constants" - (are [x] x - (eval `(make-array ~Boolean/TYPE 2)) - (eval `(make-array ~Byte/TYPE 2)) - (eval `(make-array ~Character/TYPE 2)) - (eval `(make-array ~Double/TYPE 2)) - (eval `(make-array ~Float/TYPE 2)) - (eval `(make-array ~Integer/TYPE 2)) - (eval `(make-array ~Long/TYPE 2)) - (eval `(make-array ~Short/TYPE 2))))) - + (are [t] (eval `(= t ~t/TYPE))) + Boolean Byte Character Double Float Integer Long Short)) + |