Skip to content

Commit 5c6dcdd

Browse files
committed
fix: compilation errors
1 parent 60b61af commit 5c6dcdd

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

src/test/kotlin/io/sdkman/broker/adapter/secondary/persistence/MongoConnectivityIntegrationSpec.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ class MongoConnectivityIntegrationSpec : ShouldSpec({
2929
override val postgresPassword: Option<String> = None
3030
override val serverPort: Int = 8080
3131
override val serverHost: String = "127.0.0.1"
32+
override val flywayUrl: String = "jdbc:postgresql://$postgresHost:$postgresDatabase"
33+
override val flywayUsername: String = "postgres"
34+
override val flywayPassword: String = "postgres"
3235
}
3336
val connectivity = MongoConnectivity(config)
3437

src/test/kotlin/io/sdkman/broker/adapter/secondary/persistence/PostgresConnectivityIntegrationSpec.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ class PostgresConnectivityIntegrationSpec : ShouldSpec({
3030
override val postgresPassword: Option<String> = PostgresTestListener.password.some()
3131
override val serverPort: Int = 8080
3232
override val serverHost: String = "127.0.0.1"
33+
override val flywayUrl: String = "jdbc:postgresql://$postgresHost:$postgresDatabase"
34+
override val flywayUsername: String = "postgres"
35+
override val flywayPassword: String = "postgres"
3336
}
3437
val connectivity = PostgresConnectivity(config)
3538

0 commit comments

Comments
 (0)