Skip to content

Commit

Permalink
Fix to test_log_likelihoods
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelClerx committed Jul 24, 2018
1 parent eca64cd commit 126c089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pints/tests/test_log_likelihoods.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def test_scaled_log_likelihood(self):
p = [0.1, 0.1, 0.1]
x = unscaled(p)
y = scaled(p)
self.assertEqual(y, x / nt / no)
self.assertAlmostEqual(y, x / nt / no)

# Test multi-output derivatives
y1, dy1 = unscaled.evaluateS1(p)
Expand Down

0 comments on commit 126c089

Please sign in to comment.