Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarx committed Jun 12, 2023
1 parent 725d8b5 commit 57d214d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_curve.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,6 @@ def test_curve_interpolation():
def test_simplify():
c = Curve(((0,1), (1,1), (2,1), (3,1), (4,2), (5,1), (6,1)))
c2 = simplify(c.copy())
assert len(simplify._data) == 5
assert len(c2._data) == 5
for i in range(10):
assert c[i] == c2[i]

0 comments on commit 57d214d

Please sign in to comment.