Skip to content

Commit e77f17a

Browse files
authored
Merge branch 'master' into feature/os-distance-operations
2 parents d6e76b8 + a3149f7 commit e77f17a

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

core-tests/e2e-tests/spring/spring-rest-postgres/src/test/kotlin/org/evomaster/e2etests/spring/rest/postgres/columntypes/PostgresColumnTypesEMTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class PostgresColumnTypesEMTest : SpringRestPostgresTestBase() {
2626
runTestHandlingFlakyAndCompilation(
2727
"PostgresColumnTypesEM",
2828
"com.foo.spring.rest.postgres.columntypes.PostgresColumnTypesEM",
29-
600
29+
1_000
3030
) { args ->
3131
args.add("--enableWeightBasedMutationRateSelectionForGene")
3232
args.add("false")

core-tests/e2e-tests/spring/spring-rpc-thrift/src/test/java/org/evomaster/e2etests/spring/rpc/examples/hypermutation/AdaptiveHypermutationEMTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import org.evomaster.core.search.Solution;
88
import org.evomaster.e2etests.spring.rpc.examples.SpringRPCTestBase;
99
import org.junit.jupiter.api.BeforeAll;
10+
import org.junit.jupiter.api.Disabled;
1011
import org.junit.jupiter.api.Test;
1112

1213
import java.util.ArrayList;
@@ -26,6 +27,8 @@ public static void initClass() throws Exception {
2627
}}));
2728
}
2829

30+
//FIXME
31+
@Disabled("This started failing... need fixing")
2932
@Test
3033
public void testRunEM() throws Throwable {
3134

core/src/main/kotlin/org/evomaster/core/search/gene/sql/SqlLogSeqNumberGene.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,10 @@ class SqlLogSeqNumberGene(
7575

7676
override fun containsSameValueAs(other: Gene): Boolean {
7777
if (other !is SqlLogSeqNumberGene) {
78-
throw IllegalArgumentException("Invalid gene type ${other.javaClass}")
78+
return false
7979
}
8080
return leftPart.containsSameValueAs(other.leftPart)
8181
&& rightPart.containsSameValueAs(other.rightPart)
82-
8382
}
8483

8584

0 commit comments

Comments
 (0)