Skip to content

Commit

Permalink
Remove Test for Deleted Method
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed Nov 29, 2014
1 parent 3021a10 commit f6794c9
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/test/groovy/rx/lang/groovy/ObservableTests.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -196,14 +196,6 @@ def class ObservableTests {
verify(a, times(0)).received(3);
}

@Test
public void testTakeWhileWithIndexViaGroovy() {
Observable.from(1, 2, 3).takeWhileWithIndex({ x, i -> i < 2}).subscribe({ result -> a.received(result)});
verify(a, times(1)).received(1);
verify(a, times(1)).received(2);
verify(a, times(0)).received(3);
}

@Test
public void testToSortedList() {
new TestFactory().getNumbers().toSortedList().subscribe({ result -> a.received(result)});
Expand Down

0 comments on commit f6794c9

Please sign in to comment.