Fix GenerationTerminator test

refs #61
This commit is contained in:
Fabian Becker 2015-12-21 12:46:16 +01:00
parent 327a95b037
commit dc2082e690
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ public class GenerationTerminator implements InterfaceTerminator, Serializable {
@Override @Override
public String toString() { public String toString() {
return "Generations calls = " + maxGenerations; return "Generations calls=" + maxGenerations;
} }
@Parameter(description = "Number of generations to evaluate.") @Parameter(description = "Number of generations to evaluate.")

View File

@ -37,7 +37,7 @@ public class GenerationTerminatorTest {
@Test @Test
public void testToString() throws Exception { public void testToString() throws Exception {
assertEquals("Generation calls = 100", terminator.toString()); assertEquals("Generations calls=100", terminator.toString());
} }
@Test @Test