Skip to content

Commit 09b3070

Browse files
committed
ipy fix
1 parent f2c8d79 commit 09b3070

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/compas/geometry/test_curves_polyline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ def test_polyline_tangent_at_point(coords, input, expected):
449449
assert expected == Polyline(coords).tangent_at_point(input)
450450

451451

452-
@pytest.mark.parametrize("input, expected", [((0, 0, 0), 0.0), ((1, 0, 0), 0.5), ((1, 1, 0), 1.0), ((2, 0, 0), None)])
452+
@pytest.mark.parametrize("input,expected", [((0, 0, 0), 0.0), ((1, 0, 0), 0.5), ((1, 1, 0), 1.0), ((2, 0, 0), None)])
453453
def test_polyline_parameter_at(input, expected):
454454
polyline = Polyline(((0, 0, 0), (1, 0, 0), (1, 1, 0)))
455455
if expected is not None:

0 commit comments

Comments
 (0)