Skip to content

Commit 4f042fb

Browse files
committed
- another assertion
1 parent be48b18 commit 4f042fb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/test/cljs/cljs/collections_test.cljs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1206,7 +1206,9 @@
12061206
(is (= #{1 2 3} #{1 2 3}))
12071207
(is (= 3 (count #{1 2 3})))
12081208
(let [x #{1 2 3}]
1209-
(is (every? #(contains? x %) [1 2 3]))))
1209+
(is (every? #(contains? x %) [1 2 3])))
1210+
(is (= (simple-set [[3 4] [1 2] [5 6]])
1211+
(into #{} [[3 4] [1 2] [5 6]]))))
12101212

12111213
(deftest test-simple-map-entry
12121214
(is (= (simple-map-entry :foo 1)

0 commit comments

Comments
 (0)