Skip to content

Commit ebd77ec

Browse files
lower further
saw a CI test that got 1E-9 error
1 parent d44cd3a commit ebd77ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_funs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def test_solutions_with_orthogonal_map(self):
4444
def test_updated_cov_has_R_equal_zero_for_full_rank_A(self):
4545
up_cov = mdf.updated_cov(self.A, self.id, self.id)
4646
absolute_error = np.linalg.norm(up_cov - np.linalg.inv(self.A.T @ self.A))
47-
assert absolute_error / len(up_cov) < 1e-10
47+
assert absolute_error / len(up_cov) < 1e-8
4848

4949

5050
class TestWME(unittest.TestCase):

0 commit comments

Comments
 (0)