Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Nov 29, 2017
1 parent 1a72057 commit 771953b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nopol/src/test/java/fr/inria/lille/evo/TestPatchEvo.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void test() throws IOException {
//check if we got the rights patches
//assertEquals("evo_examples.evo_example_1.EvoExample:9: CONDITIONAL number < evo_examples.evo_example_1.EvoExample.this.value", Main.patches.get("basic").get(0).toString());
fixComparison(Main.patches.get("basic").get(0), "number < evo_examples.evo_example_1.EvoExample.this.value", "number < 1", "number <= 0", "number < 0", "number <= -1");
fixComparison(Main.patches.get("test_evo_example_generated_0").get(0), "number < 1", "number <= 0", "number < -1", "number <= -1" );
fixComparison(Main.patches.get("test_evo_example_generated_0").get(0), "number < 0", "number < 1", "number <= 0", "number < -1", "number <= -1" );
assertEquals(0, Main.patches.get("test_evo_example_generated_1").size());
assertEquals(1, Main.keptMethods.size());

Expand Down

0 comments on commit 771953b

Please sign in to comment.