Skip to content

Commit 4b314c2

Browse files
committed
Replace zip(..., strict=False) with zip(..., strict=True) where possible.
1 parent 4b491b5 commit 4b314c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sparse/mlir_backend/tests/test_simple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def test_coo_3d_format(dtype):
256256

257257
result_arrays = sparse.add(coo_array, coo_array).asformat(coo_array.format).get_constituent_arrays()
258258
constituent_arrays = (pos, *crd, data * 2)
259-
for actual, expected in zip(result_arrays, constituent_arrays, strict=False):
259+
for actual, expected in zip(result_arrays, constituent_arrays, strict=True):
260260
np.testing.assert_array_equal(actual, expected)
261261

262262

0 commit comments

Comments
 (0)