Skip to content

Commit b4330c9

Browse files
committed
Fix broken BaseStream source test
It was accidentally called BasicStream, so it's never run
1 parent 2954df3 commit b4330c9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/manifold/stream_test.clj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@
9494
(deftest test-sources
9595
(doseq [f [#(java.util.ArrayList. ^java.util.List %)
9696
#(.iterator ^java.util.List %)
97-
(utils/when-class java.util.stream.BasicStream
98-
(run-source-test #(-> % java.util.ArrayList. .stream)))]]
97+
#(-> % (java.util.ArrayList.) .stream)]]
9998
(when f
10099
(= (range 100) (-> (range 100) f s/->source s/stream->seq)))
101100
(when f

0 commit comments

Comments
 (0)