Skip to content

Commit 1009069

Browse files
Fix DebugHookTest as per direction from @abersnaze
1 parent 1d3d3a9 commit 1009069

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/rx/debug/DebugHookTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void onError(Throwable e) {
6363
public void onNext(Integer t) {
6464
}
6565
});
66-
verify(events, times(6)).call(subscribe());
66+
verify(events, atLeast(3)).call(subscribe());
6767
verify(events, times(4)).call(onNext(1));
6868
// one less because it originates from the inner observable sent to merge
6969
verify(events, times(3)).call(onNext(2));

0 commit comments

Comments
 (0)