summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_recfunctions.py
diff options
context:
space:
mode:
authorMark Wiebe <mwwiebe@gmail.com>2011-08-25 21:47:27 -0700
committerCharles Harris <charlesr.harris@gmail.com>2011-08-27 07:27:01 -0600
commitcc326304a60c35d38dc29adf2544a29d6dcedfee (patch)
tree2dfe5b1d41bff282e76286558651b9f784ec3528 /numpy/lib/tests/test_recfunctions.py
parenta43d255dbc243ea7910e1b92ba83704e1a880c70 (diff)
downloadnumpy-cc326304a60c35d38dc29adf2544a29d6dcedfee.tar.gz
ENH: missingdata: Make numpy.all follow the NA && False == False rule
Diffstat (limited to 'numpy/lib/tests/test_recfunctions.py')
-rw-r--r--numpy/lib/tests/test_recfunctions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/tests/test_recfunctions.py b/numpy/lib/tests/test_recfunctions.py
index 0a3f1e3e3..3d2d1e983 100644
--- a/numpy/lib/tests/test_recfunctions.py
+++ b/numpy/lib/tests/test_recfunctions.py
@@ -626,7 +626,7 @@ class TestJoinBy2(TestCase):
dtype=[('a', int), ('b', int), ('d', int)])
def test_no_r1postfix(self):
- "Basic test of join_by"
+ "Basic test of join_by no_r1postfix"
a, b = self.a, self.b
test = join_by('a', a, b, r1postfix='', r2postfix='2', jointype='inner')
@@ -644,7 +644,7 @@ class TestJoinBy2(TestCase):
self.assertRaises(ValueError, join_by, 'a', self.a, self.b, r1postfix='', r2postfix='')
def test_no_r2postfix(self):
- "Basic test of join_by"
+ "Basic test of join_by no_r2postfix"
a, b = self.a, self.b
test = join_by('a', a, b, r1postfix='1', r2postfix='', jointype='inner')