We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2abe39 commit 7357080Copy full SHA for 7357080
ebean-migration/src/test/java/io/ebean/migration/MigrationTableAsyncTest.java
@@ -41,18 +41,19 @@ public void shutdown() {
41
dataSource.shutdown();
42
}
43
44
- //@Disabled
+ @Disabled
45
@Test
46
public void testDb2() throws Exception {
47
// Works
48
Db2Container container = Db2Container.newBuilder("latest")
49
.port(50055)
50
.containerName("mig_async_db2")
51
+ .dbName("mig_test")
52
.user("test_ebean")
53
.password("test")
54
.build();
55
- container.startWithCreate();
56
+ container.startWithDropCreate();
57
58
config.setMigrationPath("dbmig");
59
config.setDbUsername("test_ebean");
0 commit comments