Skip to content

Commit

Permalink
Tests - assert single values in tables
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin committed Nov 14, 2024
1 parent 41c1197 commit 1363c4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_manager/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def compare_tables(tables_res, tables_exp):
for key, value_res in table_res['metadata'].items():
assert value_res == tables_exp[idx]['metadata'][key]
assert table_res['columns'] == tables_exp[idx]['columns']
assert len(tables_res['rows']) == len(tables_exp['rows'])
for row_idx, row_res in enumerate(tables_res['rows']):
assert len(table_res['rows']) == len(tables_exp['rows'])
for row_idx, row_res in enumerate(table_res['rows']):
assert row_res == tables_exp[idx]['rows'][row_idx]


Expand Down

0 comments on commit 1363c4a

Please sign in to comment.