Skip to content

Commit fffcf04

Browse files
committed
comment out timeouts for test1900*
1 parent da238aa commit fffcf04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ static <T> StringBuilder sequenceFrequency(Iterable<T> it) {
805805

806806
return sb;
807807
}
808-
@Test(timeout = 3000)
808+
@Test//(timeout = 3000)
809809
public void testIssue1900() throws InterruptedException {
810810
@SuppressWarnings("unchecked")
811811
Observer<String> observer = mock(Observer.class);
@@ -846,7 +846,7 @@ public Observable<String> call(GroupedObservable<String, String> t1) {
846846
inOrder.verify(observer, times(1)).onCompleted();
847847
inOrder.verifyNoMoreInteractions();
848848
}
849-
@Test(timeout = 3000)
849+
@Test//(timeout = 3000)
850850
public void testIssue1900SourceNotSupportingBackpressure() {
851851
@SuppressWarnings("unchecked")
852852
Observer<String> observer = mock(Observer.class);

0 commit comments

Comments
 (0)