Skip to content

Commit f877cc3

Browse files
author
Giorgio Medico
committed
pr
1 parent 4da0abe commit f877cc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_b_spline_variants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ def test_cubic_interpolation_accuracy(self) -> None:
798798
point = spline.evaluate(u)
799799
# Should stay within reasonable bounds for smooth data
800800
assert -1e-10 <= point[0] <= 4
801-
assert 0 <= point[1] <= 8
801+
assert -1e-10 <= point[1] <= 8
802802

803803
def test_cubic_smoothness(self) -> None:
804804
"""Test smoothness properties of cubic interpolation."""

0 commit comments

Comments
 (0)