Fix wrong check in CodeClimateConfigTest

This commit is contained in:
ljacqu 2017-11-23 18:13:17 +01:00
parent 1053440b15
commit 53f7bf155f

View File

@ -43,7 +43,7 @@ public class CodeClimateConfigTest {
fail("Expected path '" + path + "' to end with '.java'");
}
if (new File("/" + path).exists()) {
if (!new File(path).exists()) {
fail("Path '" + path + "' does not exist!");
}
}