We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d70021 commit 12e5ceaCopy full SHA for 12e5cea
test/refactor_nrepl/ns/slam/hound/regrow_test.clj
@@ -4,10 +4,10 @@
4
[clojure.test :refer [deftest is]]))
5
6
(deftest works
7
- (is ('#{#{java.lang.Thread sun.jvm.hotspot.runtime.Thread}
8
- #{java.lang.Thread}}
9
- (sut/candidates :import 'Thread [] {})))
+ (is (contains? '#{#{java.lang.Thread sun.jvm.hotspot.runtime.Thread}
+ #{java.lang.Thread}}
+ (sut/candidates :import 'Thread [] {})))
10
11
- (is ('#{#{clojure.core}
12
- #{clojure.core cljs.core}}
13
- (sut/candidates :refer 'areduce [] {}))))
+ (is (contains? '#{#{clojure.core}
+ #{clojure.core cljs.core}}
+ (sut/candidates :refer 'areduce [] {}))))
0 commit comments