File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
rxjava-core/src/test/java/rx/operators Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -296,9 +296,9 @@ public void run() {
296
296
297
297
System .out .println ("a: " + a + " b: " + b + " c: " + c );
298
298
}
299
- @ Test (timeout = 2000 )
299
+ @ Test (timeout = 8000 )
300
300
public void testSingleSourceManyIterators () throws InterruptedException {
301
- BlockingObservable <Long > source = Observable .interval (50 , TimeUnit .MILLISECONDS ).take (10 ).toBlockingObservable ();
301
+ BlockingObservable <Long > source = Observable .interval (200 , TimeUnit .MILLISECONDS ).take (10 ).toBlockingObservable ();
302
302
303
303
Iterable <Long > iter = source .next ();
304
304
@@ -311,7 +311,7 @@ public void testSingleSourceManyIterators() throws InterruptedException {
311
311
Assert .assertEquals (Long .valueOf (i ), it .next ());
312
312
}
313
313
314
- Thread .sleep (100 );
314
+ Thread .sleep (400 );
315
315
316
316
Assert .assertEquals (false , it .hasNext ());
317
317
}
You can’t perform that action at this time.
0 commit comments