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 1d3d3a9 commit 1009069Copy full SHA for 1009069
src/test/java/rx/debug/DebugHookTest.java
@@ -63,7 +63,7 @@ public void onError(Throwable e) {
63
public void onNext(Integer t) {
64
}
65
});
66
- verify(events, times(6)).call(subscribe());
+ verify(events, atLeast(3)).call(subscribe());
67
verify(events, times(4)).call(onNext(1));
68
// one less because it originates from the inner observable sent to merge
69
verify(events, times(3)).call(onNext(2));
0 commit comments