Formatting.

This commit is contained in:
Pablo Martin 2023-02-02 17:21:06 +01:00
parent ca1d3471b5
commit 77497f70b3

View file

@ -56,7 +56,7 @@ def test_validation_on_mysql_succeeds():
"port": ssh_tunnel.local_bind_address[1], "port": ssh_tunnel.local_bind_address[1],
"user": TEST_LOLACONFIG.DW_CREDENTIALS["user"], "user": TEST_LOLACONFIG.DW_CREDENTIALS["user"],
"password": TEST_LOLACONFIG.DW_CREDENTIALS["password"], "password": TEST_LOLACONFIG.DW_CREDENTIALS["password"],
"db": TEST_LOLACONFIG.DW_CREDENTIALS["default_db"] "db": TEST_LOLACONFIG.DW_CREDENTIALS["default_db"],
}, },
query=test_query, query=test_query,
expectation_configurations=test_expectations, expectation_configurations=test_expectations,
@ -104,7 +104,7 @@ def test_validation_on_mysql_fails():
"port": ssh_tunnel.local_bind_address[1], "port": ssh_tunnel.local_bind_address[1],
"user": TEST_LOLACONFIG.DW_CREDENTIALS["user"], "user": TEST_LOLACONFIG.DW_CREDENTIALS["user"],
"password": TEST_LOLACONFIG.DW_CREDENTIALS["password"], "password": TEST_LOLACONFIG.DW_CREDENTIALS["password"],
"db": TEST_LOLACONFIG.DW_CREDENTIALS["default_db"] "db": TEST_LOLACONFIG.DW_CREDENTIALS["default_db"],
}, },
query=test_query, query=test_query,
expectation_configurations=test_expectations, expectation_configurations=test_expectations,