Fix wrong check in CodeClimateConfigTest
This commit is contained in:
parent
1053440b15
commit
53f7bf155f
@ -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!");
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user