Skip to content

Commit 60d3368

Browse files
committed
Update test_mt_stations.py
1 parent d90789c commit 60d3368

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/core/test_mt_stations.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -863,14 +863,14 @@ def test_generate_profile_deg(self):
863863
profile = self.stations.generate_profile(units="deg")
864864
for x, y, ii in zip(self.profile_deg[0:4], profile[0:4], range(4)):
865865
with self.subTest(ii):
866-
self.assertAlmostEqual(x, y)
866+
self.assertAlmostEqual(x, y, 5)
867867
with self.subTest("intercept"):
868868
self.assertAlmostEqual(
869-
self.profile_deg[-1]["intercept"], profile[-1]["intercept"]
869+
self.profile_deg[-1]["intercept"], profile[-1]["intercept"], 5
870870
)
871871
with self.subTest("slope"):
872872
self.assertAlmostEqual(
873-
self.profile_deg[-1]["slope"], profile[-1]["slope"]
873+
self.profile_deg[-1]["slope"], profile[-1]["slope"], 5
874874
)
875875

876876
def test_generate_profile_m(self):

0 commit comments

Comments
 (0)