Skip to content

Commit

Permalink
Test for unittest module instead of Core in TypeRegistryImplTest
Browse files Browse the repository at this point in the history
  • Loading branch information
eviltak committed Aug 10, 2019
1 parent e16914f commit 715c929
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public void testModuleTypes() {
.map(componentClass -> moduleManager.getEnvironment().getModuleProviding(componentClass))
.collect(Collectors.toSet());

assertTrue(modulesDeclaringComponents.size() > 2);
assertTrue(modulesDeclaringComponents.size() >= 2);

assertTrue(modulesDeclaringComponents.contains(new Name("engine")));
assertTrue(modulesDeclaringComponents.contains(new Name("Core")));
assertTrue(modulesDeclaringComponents.contains(new Name("unittest")));
}
}

0 comments on commit 715c929

Please sign in to comment.