Skip to content

Commit

Permalink
Remove no-longer-correct comment from test
Browse files Browse the repository at this point in the history
  • Loading branch information
dsaff committed Apr 15, 2011
1 parent dad7b85 commit 4f49c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/junit/tests/ParentRunnerTest.java
Expand Up @@ -63,7 +63,7 @@ public void testMultipleFilters() throws Exception {
.filterWith(new Exclude("test2"));
Result result= junitCore.run(requestFilteredFiltered);
assertThat(result.getFailures(), isEmpty());
assertEquals(1, result.getRunCount()); // Fails here: actual 2
assertEquals(1, result.getRunCount());
}

private Matcher<List<?>> isEmpty() {
Expand Down

0 comments on commit 4f49c9c

Please sign in to comment.