Fix Multiverse dependency + fix invalid test in Eclipse

This commit is contained in:
Gabriele C
2016-05-14 00:01:26 +02:00
parent 05f0162a16
commit c748501345
4 changed files with 4 additions and 5 deletions
@@ -88,7 +88,7 @@ public class ConfigFileConsistencyTest {
// when / then
for (Property<?> property : propertyMap.keySet()) {
assertThat("Default value of '" + property.getPath() + "' in config.yml should be the same as in Property",
property.getFromFile(configuration), equalTo(property.getDefaultValue()));
property.getFromFile(configuration).equals(property.getDefaultValue()), equalTo(true));
}
}