Skip to content

Commit

Permalink
Fix DebugHookTest as per direction from @abersnaze
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed Feb 17, 2014
1 parent 1ef689d commit 6898396
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void onError(Throwable e) {
public void onNext(Integer t) {
}
});
verify(events, times(6)).call(subscribe());
verify(events, atLeast(3)).call(subscribe());
verify(events, times(4)).call(onNext(1));
// one less because it originates from the inner observable sent to merge
verify(events, times(3)).call(onNext(2));
Expand Down

0 comments on commit 6898396

Please sign in to comment.