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 912c757 commit eb10a20Copy full SHA for eb10a20
test/clojure/tools/namespace/dir_test.clj
@@ -25,7 +25,8 @@
25
(.invoke to-file link (object-array 0))))
26
27
;; Only run this test on Java 1.7+, where java.nio.file.Files is available.
28
-#_(when (Class/forName "java.nio.file.Files")
+#_(when (try (Class/forName "java.nio.file.Files")
29
+ (catch ClassNotFoundException _ false))
30
(deftest t-scan-by-canonical-path
31
(let [dir (help/create-temp-dir "t-scan-by-canonical-path")
32
main-clj (help/create-source dir 'example.main :clj '[example.one])
0 commit comments