Skip to content

Commit 1aadf04

Browse files
committed
Increased the interval time to 100ms.
1 parent 502405d commit 1aadf04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/rx/internal/operators/BlockingOperatorNextTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ public void run() {
296296

297297
@Test /* (timeout = 8000) */
298298
public void testSingleSourceManyIterators() throws InterruptedException {
299-
Observable<Long> o = Observable.interval(10, TimeUnit.MILLISECONDS);
299+
Observable<Long> o = Observable.interval(100, TimeUnit.MILLISECONDS);
300300
PublishSubject<Void> terminal = PublishSubject.create();
301301
BlockingObservable<Long> source = o.takeUntil(terminal).toBlocking();
302302

0 commit comments

Comments
 (0)