Skip to content

Commit a900541

Browse files
committed
change test duration to 2 seconds
1 parent 4bdfdf8 commit a900541

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ public void onNext(Integer t) {
797797

798798
@Test//(timeout = 100000)
799799
public void concatMapRangeAsyncLoopIssue2876() {
800-
final long durationSeconds = 10;
800+
final long durationSeconds = 2;
801801
final long startTime = System.currentTimeMillis();
802802
for (int i = 0;; i++) {
803803
//only run this for a max of ten seconds
@@ -823,4 +823,5 @@ public Observable<Integer> call(Integer t) {
823823
assertEquals((Integer)999, ts.getOnNextEvents().get(999));
824824
}
825825
}
826+
826827
}

0 commit comments

Comments
 (0)