diff --git a/tests/test_distribution.py b/tests/test_distribution.py index 55c122629..c1b74cd2b 100644 --- a/tests/test_distribution.py +++ b/tests/test_distribution.py @@ -240,7 +240,7 @@ def test_entropy(self): desired_entropy = scipy.stats.multivariate_normal( self.mean[b], cov).entropy() np.testing.assert_allclose( - entropy.array[b], desired_entropy, rtol=1e-5) + entropy.array[b], desired_entropy, rtol=1e-4) def test_self_kl(self): kl = self.distrib.kl(self.distrib)