Skip to content

Commit d83f2de

Browse files
committed
Fix test
1 parent e9e9a2d commit d83f2de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test_mysql_ch_replicator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1560,7 +1560,8 @@ def test_enum_conversion():
15601560
and that zero values are preserved rather than converted to first enum value.
15611561
"""
15621562
config_file = CONFIG_FILE
1563-
cfg = config.Settings(config_file)
1563+
cfg = config.Settings()
1564+
cfg.load(config_file)
15641565
mysql_config = cfg.mysql
15651566
clickhouse_config = cfg.clickhouse
15661567
mysql = mysql_api.MySQLApi(mysql_config)

0 commit comments

Comments
 (0)