File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
kafka-connect-neo4j/src/test/kotlin/streams/kafka/connect/sink Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class Neo4jSinkConnectorConfigSinkTest {
3131 Neo4jSinkConnectorConfig .AUTHENTICATION_BASIC_PASSWORD to " BAR" )
3232 val config = Neo4jSinkConnectorConfig (originals)
3333
34- assertEquals(originals[" ${Neo4jSinkConnectorConfig .TOPIC_CYPHER_PREFIX } foo" ], config.topicMap [" foo" ])
34+ assertEquals(originals[" ${Neo4jSinkConnectorConfig .TOPIC_CYPHER_PREFIX } foo" ], config.topics.allTopics() [" foo" ])
3535 assertTrue { config.encryptionEnabled }
3636 assertEquals(originals[Neo4jSinkConnectorConfig .SERVER_URI ], config.serverUri.toString())
3737 assertEquals(Config .TrustStrategy .Strategy .TRUST_ALL_CERTIFICATES , config.encryptionTrustStrategy)
@@ -47,7 +47,7 @@ class Neo4jSinkConnectorConfigSinkTest {
4747 assertEquals(Neo4jSinkConnectorConfig .CONNECTION_POOL_MAX_SIZE_DEFAULT , config.connectionPoolMaxSize)
4848 assertEquals(PoolSettings .DEFAULT_CONNECTION_ACQUISITION_TIMEOUT , config.connectionAcquisitionTimeout)
4949 assertEquals(Config .LoadBalancingStrategy .LEAST_CONNECTED , config.loadBalancingStrategy)
50- assertEquals(Neo4jSinkConnectorConfig .BATCH_TIMEOUT_MSEC_DEFAULT , config.batchTimeout)
50+ assertEquals(Neo4jSinkConnectorConfig .BATCH_TIMEOUT_MSECS , config.batchTimeout)
5151 }
5252
5353}
You can’t perform that action at this time.
0 commit comments