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 badadd1 commit b852410Copy full SHA for b852410
language-adaptors/rxjava-clojure/src/test/clojure/rx/lang/clojure/blocking_test.clj
@@ -36,7 +36,7 @@
36
(testing "returns one element"
37
(is (= 1 (b/single (rx/return 1)))))
38
(testing "throw if empty"
39
- (is (thrown? java.lang.IllegalArgumentException (b/single (rx/empty)))))
+ (is (thrown? java.util.NoSuchElementException (b/single (rx/empty)))))
40
(testing "throw if many"
41
(is (thrown? java.lang.IllegalArgumentException (b/single (rx/seq->o [1 2])))))
42
(testing "rethrows errors"
0 commit comments