Skip to content

Commit ee8592d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9a53c58 commit ee8592d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_items.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def test_aot_unwrap():
121121
d = item([{"a": "A"}, {"b": "B"}])
122122
unwrapped = d.unwrap()
123123
assert_is_ppo(unwrapped, list)
124-
for du, _ in zip(unwrapped, d):
124+
for du, _ in zip(unwrapped, d, strict=False):
125125
assert_is_ppo(du, dict)
126126
for ku in du:
127127
vu = du[ku]

0 commit comments

Comments
 (0)