Skip to content

Commit e00eaf6

Browse files
authored
[Source-mysql-v2] : Fix tests to be passing on local (#45363)
1 parent eb018e6 commit e00eaf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte-integrations/connectors/source-mysql-v2/src/test/kotlin/io/airbyte/integrations/source/mysql/MysqlSourceDatatypeIntegrationTest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
package io.airbyte.integrations.source.mysql
33

44
import com.fasterxml.jackson.databind.JsonNode
5-
import io.airbyte.cdk.TestClockFactory
5+
import io.airbyte.cdk.ClockFactory
66
import io.airbyte.cdk.command.CliRunner
77
import io.airbyte.cdk.data.AirbyteType
88
import io.airbyte.cdk.data.LeafAirbyteType
@@ -83,7 +83,7 @@ class MysqlSourceDatatypeIntegrationTest {
8383
val actualReads: Map<String, BufferingOutputConsumer> by lazy {
8484
val result: Map<String, BufferingOutputConsumer> =
8585
allStreamNamesAndRecordData.keys.associateWith {
86-
BufferingOutputConsumer(TestClockFactory().fixed())
86+
BufferingOutputConsumer(ClockFactory().fixed())
8787
}
8888
for (msg in allReadMessages) {
8989
result[streamName(msg) ?: continue]?.accept(msg)

0 commit comments

Comments
 (0)