We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa0eb34 commit dcef2a0Copy full SHA for dcef2a0
2 files changed
pom.xml
@@ -52,7 +52,7 @@
52
<groupId>org.evomaster</groupId>
53
<artifactId>evomaster-client-java-controller</artifactId>
54
<scope>test</scope>
55
- <version>1.4.1-SNAPSHOT</version>
+ <version>1.5.0</version>
56
</dependency>
57
58
</dependencies>
src/test/java/org/example/EMDriver.java
@@ -78,9 +78,6 @@ public void resetStateOfSUT() {
78
79
@Override
80
public List<DbSpecification> getDbSpecifications() {
81
- return Arrays.asList(new DbSpecification(){{
82
- dbType = DatabaseType.H2;
83
- connection = sqlConnection;
84
- }});
+ return Arrays.asList(new DbSpecification(DatabaseType.H2, sqlConnection));
85
}
86
0 commit comments