Skip to content

Commit eb94ac9

Browse files
committed
Use strict zip
1 parent 8fda5e2 commit eb94ac9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/shapes/circles/test_circle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ def test_is_circle(self, shape):
3232
for x, y in zip(
3333
cx + shape.radius * np.cos(angles),
3434
cy + shape.radius * np.sin(angles),
35-
strict=False,
35+
strict=True,
3636
):
3737
assert pytest.approx(shape.distance(x, y)) == 0

0 commit comments

Comments
 (0)