Skip to content

Commit

Permalink
fixes unittests as well
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaelicke committed Sep 12, 2022
1 parent 2076fa2 commit 774c820
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions skgstat/tests/test_estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ def test_genton(self):
np.random.seed(42)
x2 = np.random.gamma(30, 5, 1000)

self.assertAlmostEqual(e(x1), 0.0089969, places=7)
self.assertAlmostEqual(e(x2), 0.0364393, places=7)
self.assertAlmostEqual(e(x1), 62.1, places=1)
self.assertAlmostEqual(e(x2), 354.5, places=1)

def test_genton_nan(self):
# extract actual estimator
Expand Down

0 comments on commit 774c820

Please sign in to comment.