fix check-style

This commit is contained in:
Han Fei 2022-12-01 13:29:50 +01:00
parent e28c98d4ba
commit ae91d0c78e
2 changed files with 5 additions and 4 deletions

View File

@ -29,7 +29,6 @@ namespace DB
namespace ErrorCodes
{
extern const int NOT_IMPLEMENTED;
extern const int UNSUPPORTED_METHOD;
}

View File

@ -31,7 +31,7 @@ def test_simple_get(started_cluster):
"""
)
assert result.strip() == 'Inspect Browser'
assert result.strip() == "Inspect Browser"
def test_nested_get(started_cluster):
@ -43,7 +43,9 @@ def test_nested_get(started_cluster):
"""
)
assert result.strip() == "('Chromium 1994','1994 amd64','Google Chrome Chromium 1994')"
assert (
result.strip() == "('Chromium 1994','1994 amd64','Google Chrome Chromium 1994')"
)
def test_collecting_get(started_cluster):
@ -67,7 +69,7 @@ def test_not_found(started_cluster):
"""
)
assert result.strip() == '\\N'
assert result.strip() == "\\N"
def test_not_all_attributes_found(started_cluster):