Skip to content

Commit 83eb822

Browse files
Tighten tolerances
1 parent fccda0f commit 83eb822

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_utilities.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -684,9 +684,9 @@ def test_interpolated_component():
684684
100)
685685

686686
xo.assert_allclose(component.wake(test_points_wake),
687-
test_points_wake*2)
687+
test_points_wake*2, atol=1e-15)
688688
xo.assert_allclose(component.impedance(test_points_impedance),
689-
test_points_impedance*3)
689+
test_points_impedance*3, atol=1e-15)
690690

691691

692692
def test_component_from_arrays():

0 commit comments

Comments
 (0)