Skip to content

Commit

Permalink
ships with a hacked version of junit, to make the test more challenging!
Browse files Browse the repository at this point in the history
  • Loading branch information
joshskeen committed Sep 1, 2015
1 parent d7c7f24 commit 92d381c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified lib/junit-4.12.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions src/test/java/lessonA_CreatingObservableStreams.java
Expand Up @@ -69,9 +69,9 @@ public void _2_anObservableStreamEmitsThreeMajorEventTypes() {
.doOnError(throwable -> mCount3++)
.subscribe(mSubscriber);
mSubscriber.awaitTerminalEvent();
assertThat(mCount1).isEqualTo(____);
assertThat(mCount2).isEqualTo(____);
assertThat(mCount3).isEqualTo(____);
assertThat(mCount1).isEqualTo(15);
assertThat(mCount2).isEqualTo(1);
assertThat(mCount3).isEqualTo(0);
}


Expand Down

0 comments on commit 92d381c

Please sign in to comment.