Created
November 10, 2016 11:42
-
-
Save hkurokawa/2bea06c9997cbd3eb440479de58a5c3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final Exception e = new Exception("Failure!"); | |
Single.zip(Single.just(1), Single.error(e), Pair::new) | |
.test() | |
.assertError(e); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment