File tree 2 files changed +2
-4
lines changed
airbyte-cdk/java/airbyte-cdk/datastore-postgres
src/test/kotlin/io/airbyte/cdk/db
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ compileKotlin {
11
11
}
12
12
}
13
13
14
- spotbugsTest. enabled = false
15
-
16
14
dependencies {
17
15
implementation project(' :airbyte-cdk:java:airbyte-cdk:airbyte-cdk-dependencies' )
18
16
implementation project(' :airbyte-cdk:java:airbyte-cdk:airbyte-cdk-core' )
Original file line number Diff line number Diff line change @@ -108,12 +108,12 @@ internal class PostgresUtilsTest {
108
108
}
109
109
110
110
companion object {
111
- lateinit var PSQL_DB : PostgreSQLContainer <Nothing >
111
+ var PSQL_DB : PostgreSQLContainer <Nothing > =
112
+ PostgreSQLContainer <Nothing >(" postgres:13-alpine" )
112
113
113
114
@JvmStatic
114
115
@BeforeAll
115
116
fun init (): Unit {
116
- PSQL_DB = PostgreSQLContainer <Nothing >(" postgres:13-alpine" )
117
117
PSQL_DB .start()
118
118
}
119
119
}
You can’t perform that action at this time.
0 commit comments