Skip to content

Commit fb1c2a4

Browse files
committed
Fix test_storage_mongodb/test.py::test_secure_connection_uri
1 parent 9c3984b commit fb1c2a4

File tree

1 file changed

+1
-1
lines changed
  • tests/integration/test_storage_mongodb

1 file changed

+1
-1
lines changed

tests/integration/test_storage_mongodb/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ def test_secure_connection_uri(started_cluster):
395395
simple_mongo_table.insert_many(data)
396396
node = started_cluster.instances["node"]
397397
node.query(
398-
"CREATE OR REPLACE TABLE test_secure_connection_uri(key UInt64, data String) ENGINE = MongoDB('mongodb://root:clickhouse@mongo_secure:27017/test?tls=true&tlsAllowInvalidCertificates=true&tlsAllowInvalidHostnames=true', 'test_secure_connection_uri')"
398+
"CREATE OR REPLACE TABLE test_secure_connection_uri(key UInt64, data String) ENGINE = MongoDB('mongodb://root:clickhouse@mongo_secure:27017/test?tls=true&tlsAllowInvalidCertificates=true&tlsAllowInvalidHostnames=true&authSource=admin', 'test_secure_connection_uri')"
399399
)
400400

401401
assert node.query("SELECT COUNT() FROM test_secure_connection_uri") == "100\n"

0 commit comments

Comments
 (0)