Skip to content

Commit

Permalink
Remove 'Strict' option which is not supported in <3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
joncass committed Nov 1, 2024
1 parent 5887f6d commit 104bb2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,9 +405,9 @@ def test_json_as_object():
"null",
]
}
for expected_row, actual_row in zip(
rows, test_runner.records[altered_table_name], strict=True
):

assert len(rows) == len(test_runner.records[altered_table_name])
for expected_row, actual_row in zip(rows, test_runner.records[altered_table_name]):
assert actual_row == expected_row


Expand Down

0 comments on commit 104bb2d

Please sign in to comment.