There was an error while loading. Please reload this page.
1 parent 341a284 commit ae6c72eCopy full SHA for ae6c72e
1 file changed
test/clojure/core_test/apply.cljc
@@ -26,8 +26,8 @@
26
(is (= 45 (apply + (range 10)))) ; All args as sequential
27
(is (= 10 (apply + 1 [2 3 4])))
28
(is (= 10 (apply + 1 #{2 3 4}))) ; A set works but order not guaranteed
29
- (is (= [[:a 1] [:b 2]]
30
- (apply conj [] {:a 1, :b 2})))
+ (is (= #{[:a 1] [:b 2]} ; Can't guarantee order of map entries
+ (apply conj #{} {:a 1, :b 2})))
31
(is (= [\a \b \c] ; String is sequence of chars
32
(apply conj [] "abc")))
33
0 commit comments