From 104bb2dc152938cbf0f3d4d3bd6d99012b0a2bf5 Mon Sep 17 00:00:00 2001 From: Jon Cass Date: Fri, 1 Nov 2024 10:29:32 -0400 Subject: [PATCH] Remove 'Strict' option which is not supported in <3.10 --- tests/test_core.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_core.py b/tests/test_core.py index 6fe8c6d8..32884668 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -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