diff --git a/pom.xml b/pom.xml index 21767e7..2e47897 100644 --- a/pom.xml +++ b/pom.xml @@ -70,7 +70,7 @@ https://sonarcloud.io 4.0.7 - 10.13.0 + 10.15.0 diff --git a/src/test/java/io/dropwizard/flyway/cli/DbMigrateCommandTest.java b/src/test/java/io/dropwizard/flyway/cli/DbMigrateCommandTest.java index 96f4194..3514432 100644 --- a/src/test/java/io/dropwizard/flyway/cli/DbMigrateCommandTest.java +++ b/src/test/java/io/dropwizard/flyway/cli/DbMigrateCommandTest.java @@ -15,7 +15,7 @@ public class DbMigrateCommandTest extends AbstractCommandTest { @BeforeEach void setUpFlyway() { - migrateResult = new MigrateResult(VersionPrinter.getVersion(), "db", "schema"); + migrateResult = new MigrateResult(VersionPrinter.getVersion(), "db", "schema", "PostgreSQL"); migrateResult.initialSchemaVersion = "initial"; migrateResult.targetSchemaVersion = "target"; migrateResult.migrationsExecuted = 23;