remove extra double quotes

This commit is contained in:
Arthur Passos 2022-07-29 13:59:29 -03:00
parent f0f19874da
commit d1de8d0dfb

View File

@ -17,7 +17,7 @@ def start_cluster():
def test_lc_of_string(start_cluster):
result = node.query("WITH ( SELECT toLowCardinality('a') ) AS bar SELECT bar")
assert result == "a\n""
assert result == "a\n"
def test_lc_of_int(start_cluster):