Skip to content

Commit

Permalink
Fix existing unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelstoer committed Oct 5, 2015
1 parent 9bffe89 commit 6ae2035
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void shouldExcludedConfiguredClasses() {
Set<Class<?>> classesToParse = classpathScanner.findClassesToParse();
// then
assertThat(classesToParse, notContains(TestModelWithASingleAnnotatedMember.class));
assertThat(classesToParse.size(), is(9));
assertThat(classesToParse.size(), is(10));
}

private Matcher<? super Set<Class<?>>> notContains(final Class<?> testModelClass) {
Expand Down

0 comments on commit 6ae2035

Please sign in to comment.