(self)
| 2977 | assert_array_almost_equal(z, self.zs) |
| 2978 | |
| 2979 | def test_object(self): |
| 2980 | self._setup(Decimal) |
| 2981 | z = np.correlate(self.x, self.y, 'full') |
| 2982 | assert_array_almost_equal(z, self.z1) |
| 2983 | z = np.correlate(self.y, self.x, 'full') |
| 2984 | assert_array_almost_equal(z, self.z2) |
| 2985 | |
| 2986 | def test_no_overwrite(self): |
| 2987 | d = np.ones(100) |
nothing calls this directly
no test coverage detected