Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
hotfix test asserion from #2
Browse files Browse the repository at this point in the history
  • Loading branch information
mbalatsko committed Sep 19, 2023
1 parent e3e7be6 commit d026511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pykalman/tests/test_standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def test_kalman_fit(self):
loglikelihoods[i] = kf.loglikelihood(self.data.observations)
kf.em(X=self.data.observations, n_iter=1)

assert (np.allclose(loglikelihoods, self.data.loglikelihoods[:5])).all()
assert np.allclose(loglikelihoods, self.data.loglikelihoods[:5])

# check that EM for all parameters is working
kf.em_vars = 'all'
Expand Down

0 comments on commit d026511

Please sign in to comment.