Automatic style fix

This commit is contained in:
robot-clickhouse 2024-02-21 18:45:02 +00:00
parent 7ad8644349
commit 51519d4f5b

View File

@ -219,7 +219,9 @@ def test_implicit_show_grants():
)
instance.query("GRANT SELECT(x) ON test.table TO A")
assert instance.query("SHOW GRANTS FOR A") == "GRANT SELECT(x) ON test.`table` TO A\n"
assert (
instance.query("SHOW GRANTS FOR A") == "GRANT SELECT(x) ON test.`table` TO A\n"
)
assert (
instance.query(
"select count() FROM system.databases WHERE name='test'", user="A"