mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 09:52:38 +00:00
fix check-style
This commit is contained in:
parent
e28c98d4ba
commit
ae91d0c78e
@ -29,7 +29,6 @@ namespace DB
|
|||||||
|
|
||||||
namespace ErrorCodes
|
namespace ErrorCodes
|
||||||
{
|
{
|
||||||
extern const int NOT_IMPLEMENTED;
|
|
||||||
extern const int UNSUPPORTED_METHOD;
|
extern const int UNSUPPORTED_METHOD;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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):
|
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):
|
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):
|
def test_not_all_attributes_found(started_cluster):
|
||||||
|
Loading…
Reference in New Issue
Block a user