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.
2 parents 69bc312 + 621741b commit 9ff74d3Copy full SHA for 9ff74d3
src/test/java/rx/internal/operators/OperatorObserveOnTest.java
@@ -687,7 +687,7 @@ public void testErrorPropagatesWhenNoOutstandingRequests() {
687
688
@Override
689
public void call(Notification<? super Long> n) {
690
- // System.out.println("BEFORE " + n);
+ // System.out.println("BEFORE " + n);
691
}
692
693
})
@@ -696,7 +696,11 @@ public void call(Notification<? super Long> n) {
696
697
698
699
- // System.out.println("AFTER " + n);
+ try {
700
+ Thread.sleep(100);
701
+ } catch (InterruptedException e) {
702
+ }
703
+ // System.out.println("AFTER " + n);
704
705
706
});
0 commit comments