Skip to content

Commit 417a70e

Browse files
committed
Fix zip strict test
1 parent 5539563 commit 417a70e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ def test_zip_strict():
418418
list_a = [0, 1]
419419
list_b = [1, 2, 3]
420420
# zip does not raise any error
421-
for _, _ in zip(list_a, list_b, strict=True):
421+
for _, _ in zip(list_a, list_b, strict=False):
422422
pass
423423

424424
# zip_strict does raise an error

0 commit comments

Comments
 (0)