(self)
| 922 | assert_array_almost_equal(actual, desired, decimal=15) |
| 923 | |
| 924 | def test_laplace_0(self): |
| 925 | assert_equal(random.laplace(scale=0), 0) |
| 926 | assert_raises(ValueError, random.laplace, scale=-0.) |
| 927 | |
| 928 | def test_logistic(self): |
| 929 | random.seed(self.seed) |
nothing calls this directly
no test coverage detected