Skip to content

Commit 81a1374

Browse files
committed
fixes
1 parent 5ddbfd9 commit 81a1374

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ydb/tests/functional/compatibility/test_compatibility.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,11 @@ def upsert_and_check_sum(self, iteration_count=1, start_index=0):
141141
)
142142

143143
query_body = "SELECT SUM(value) as sum_value from `sample_table`"
144-
query = ydb.ScanQuery(query_body, {})
145-
self.execute_scan_query(query_body)[0]['sum_value'] == upsert_count * iteration_count + start_index
144+
assert self.execute_scan_query(query_body)[0]['sum_value'] == upsert_count * iteration_count + start_index
146145

147146
def create_table(self, store_type):
148147
with ydb.SessionPool(self.driver, size=1) as pool:
149148
with pool.checkout() as session:
150-
store_type.upper()
151149
session.execute_scheme(
152150
"""create table `sample_table` (
153151
id Uint64 NOT NULL, value Uint64,

0 commit comments

Comments
 (0)