Skip to content

Commit 82fc4cc

Browse files
authored
Add-strict=True-in-zip()
1 parent 5a1a954 commit 82fc4cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/arrays/integer/test_construction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def test_conversions(data_missing):
6767
expected = np.array([pd.NA, 1], dtype=object)
6868
tm.assert_numpy_array_equal(result, expected)
6969

70-
for r, e in zip(result, expected):
70+
for r, e in zip(result, expected, strict=True):
7171
if pd.isnull(r):
7272
assert pd.isnull(e)
7373
elif is_integer(r):

0 commit comments

Comments
 (0)