Skip to content

Commit d14d875

Browse files
committed
remove trailing spaces
1 parent be9195e commit d14d875

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/query/test_query_parameters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def test_uuid_send(pool: ydb.QuerySessionPool):
161161
query = """
162162
DECLARE $val AS UUID;
163163
164-
SELECT CAST($val AS Utf8) AS value
164+
SELECT CAST($val AS Utf8) AS value
165165
"""
166166
res = pool.execute_with_retries(query, parameters={"$val": ydb.TypedValue(val, ydb.PrimitiveType.UUID)})
167167
actual_value = res[0].rows[0]["value"]
@@ -173,7 +173,7 @@ def test_uuid_read(pool: ydb.QuerySessionPool):
173173
query = """
174174
DECLARE $val AS Utf8;
175175
176-
SELECT CAST($val AS UUID) AS value
176+
SELECT CAST($val AS UUID) AS value
177177
"""
178178
res = pool.execute_with_retries(query, parameters={"$val": ydb.TypedValue(str(val), ydb.PrimitiveType.Utf8)})
179179
actual_value = res[0].rows[0]["value"]

0 commit comments

Comments
 (0)