Skip to content

Commit 95dc6ca

Browse files
committed
Fix typo in ClickHouseContainer.__init__.
1 parent 33014e4 commit 95dc6ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clickhouse/testcontainers/clickhouse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def __init__(
5353
raise ValueError("use `username` instead")
5454
self.username = username or os.environ.get("CLICKHOUSE_USER", "test")
5555
self.password = password or os.environ.get("CLICKHOUSE_PASSWORD", "test")
56-
self.dbname = dbname or self.os.environ.get("CLICKHOUSE_DB", "test")
56+
self.dbname = dbname or os.environ.get("CLICKHOUSE_DB", "test")
5757
self.port_to_expose = port
5858
self.with_exposed_ports(self.port_to_expose)
5959

0 commit comments

Comments
 (0)