fix testdata

This commit is contained in:
Anna Kozlova
2018-01-03 14:57:54 +01:00
parent 0ebca9cff2
commit ff4781df76
2 changed files with 2 additions and 2 deletions
@@ -6,6 +6,6 @@ import static org.junit.Assert.assertFalse;
class X {
@Test
void t() {
assertFalse(!true);
assertFalse(false);
}
}
@@ -4,6 +4,6 @@ import static org.junit.Assert.assertTrue;
class StaticImportWithoutTestMethod {
void t() {
assertFalse(!false);
assertFalse(true);
}
}