summaryrefslogtreecommitdiff
path: root/numpy/core/tests/test_umath_complex.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/tests/test_umath_complex.py')
-rw-r--r--numpy/core/tests/test_umath_complex.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/core/tests/test_umath_complex.py b/numpy/core/tests/test_umath_complex.py
index fb3b6577c..1b098a120 100644
--- a/numpy/core/tests/test_umath_complex.py
+++ b/numpy/core/tests/test_umath_complex.py
@@ -351,10 +351,10 @@ class TestCsqrt(object):
# cuts first)
class TestCpow(object):
- def setUp(self):
+ def setup(self):
self.olderr = np.seterr(invalid='ignore')
- def tearDown(self):
+ def teardown(self):
np.seterr(**self.olderr)
def test_simple(self):
@@ -391,10 +391,10 @@ class TestCpow(object):
assert_almost_equal(n_r[i], p_r[i], err_msg='Loop %d\n' % i)
class TestCabs(object):
- def setUp(self):
+ def setup(self):
self.olderr = np.seterr(invalid='ignore')
- def tearDown(self):
+ def teardown(self):
np.seterr(**self.olderr)
def test_simple(self):