summaryrefslogtreecommitdiff
path: root/numpy/core
diff options
context:
space:
mode:
authorJulian Taylor <jtaylor.debian@googlemail.com>2013-06-05 22:07:11 +0200
committerJulian Taylor <jtaylor.debian@googlemail.com>2013-06-05 22:14:48 +0200
commit37723a58124e0013c6f80b28a452b8ce7eb921fa (patch)
tree7e30a00a8bc37b387a394de0912f32afd7b7762b /numpy/core
parent41f6a89fe6a0201c3575446ed4140b52f51f64b2 (diff)
downloadnumpy-37723a58124e0013c6f80b28a452b8ce7eb921fa.tar.gz
TST: fix some function name conflicts
enables a few extra tests
Diffstat (limited to 'numpy/core')
-rw-r--r--numpy/core/tests/test_multiarray.py2
-rw-r--r--numpy/core/tests/test_umath.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/tests/test_multiarray.py b/numpy/core/tests/test_multiarray.py
index 2f6716c23..87903c28a 100644
--- a/numpy/core/tests/test_multiarray.py
+++ b/numpy/core/tests/test_multiarray.py
@@ -1207,7 +1207,7 @@ class TestFancyIndexing(TestCase):
x[m] = 5
assert_array_equal(x, array([1,5,3,4]))
- def test_assign_mask(self):
+ def test_assign_mask2(self):
xorig = array([[1,2,3,4],[5,6,7,8]])
m = array([0,1],bool)
m2 = array([[0,1],[1,0]],bool)
diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py
index 1967db547..586b64636 100644
--- a/numpy/core/tests/test_umath.py
+++ b/numpy/core/tests/test_umath.py
@@ -348,7 +348,7 @@ class TestHypotSpecialValues(TestCase):
assert_hypot_isnan(np.nan, np.nan)
assert_hypot_isnan(np.nan, 1)
- def test_nan_outputs(self):
+ def test_nan_outputs2(self):
assert_hypot_isinf(np.nan, np.inf)
assert_hypot_isinf(np.inf, np.nan)
assert_hypot_isinf(np.inf, 0)