Skip to content

Commit

Permalink
Fix #917, all works now
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Oct 10, 2024
1 parent e1b133c commit 70912f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/sci/interop_test.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@
#?(:clj
(deftest clojure-1_12-interop-test
(is (= [1 2 3] (eval* "(map Integer/parseInt [\"1\" \"2\" \"3\"])")))
(is (= [1 2 3] (eval* "(map String/.length [\"1\" \"22\" \"333\"])")))))
(is (= [1 2 3] (eval* "(map String/.length [\"1\" \"22\" \"333\"])")))
(is (= ["1" "22" "333"] (eval* "(map String/new [\"1\" \"22\" \"333\"])")))))

(when-not tu/native?
(deftest exception-data
Expand Down

0 comments on commit 70912f2

Please sign in to comment.