Skip to content

Commit 9b3a838

Browse files
Remove Timeout on Tests
1 parent abe9c98 commit 9b3a838

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rxjava-core/src/test/java/rx/schedulers/AbstractSchedulerConcurrencyTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public Subscription call(Scheduler innerScheduler, Long i) {
163163
assertEquals(10, counter.get());
164164
}
165165

166-
@Test(timeout = 20000)
166+
@Test
167167
public void recursionUsingFunc2() throws InterruptedException {
168168
final CountDownLatch latch = new CountDownLatch(1);
169169
getScheduler().schedule(1L, new Func2<Scheduler, Long, Subscription>() {
@@ -185,7 +185,7 @@ public Subscription call(Scheduler innerScheduler, Long i) {
185185
latch.await();
186186
}
187187

188-
@Test(timeout = 20000)
188+
@Test
189189
public void recursionUsingAction0() throws InterruptedException {
190190
final CountDownLatch latch = new CountDownLatch(1);
191191
getScheduler().schedule(new Action1<Action0>() {

0 commit comments

Comments
 (0)