Skip to content

Commit

Permalink
Remove ExecutorScheduler - New ComputationScheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed Apr 19, 2014
1 parent 6b25274 commit 71e423e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/rx/operators/OperationConditionalsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ public void testWhileDoZeroTimes() {

@Test
public void testWhileDoManyTimes() {
Observable<Integer> source1 = Observable.from(1, 2, 3).subscribeOn(Schedulers.currentThread());
Observable<Integer> source1 = Observable.from(1, 2, 3).subscribeOn(Schedulers.trampoline());

List<Integer> expected = new ArrayList<Integer>(numRecursion * 3);
for (int i = 0; i < numRecursion; i++) {
Expand Down

0 comments on commit 71e423e

Please sign in to comment.