diff options
Diffstat (limited to 'numpy/ma/tests/test_extras.py')
-rw-r--r-- | numpy/ma/tests/test_extras.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/ma/tests/test_extras.py b/numpy/ma/tests/test_extras.py index 04bf8cfc2..3c95e25ea 100644 --- a/numpy/ma/tests/test_extras.py +++ b/numpy/ma/tests/test_extras.py @@ -1163,7 +1163,7 @@ class TestMedian: class TestCov: - def setup(self): + def setup_method(self): self.data = array(np.random.rand(12)) def test_1d_without_missing(self): @@ -1230,7 +1230,7 @@ class TestCov: class TestCorrcoef: - def setup(self): + def setup_method(self): self.data = array(np.random.rand(12)) self.data2 = array(np.random.rand(12)) |