Skip to content
Snippets Groups Projects
Commit c8dc8321 authored by MoritzThomasHuebner's avatar MoritzThomasHuebner
Browse files

Changed an assertTrue to an assertEqual statement

parent f4a5d33c
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ class TestGaussianLikelihood(unittest.TestCase):
likelihood.parameters['m'] = 2
likelihood.parameters['c'] = 0
likelihood.log_likelihood()
self.assertTrue(likelihood.sigma == self.sigma)
self.assertEqual(likelihood.sigma, self.sigma)
def test_known_array_sigma(self):
sigma_array = np.ones(self.N) * self.sigma
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment