summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2009-02-06 06:31:11 +0000
committerTravis Oliphant <oliphant@enthought.com>2009-02-06 06:31:11 +0000
commit675c81d574553a0eb0ddbbbdf2933be08c982a7a (patch)
tree62c5f10bc33f2b83803638400d7bb0ef2513f299 /numpy
parent0b0c3a1b68c76b14c5b8d7291df730f8fe618843 (diff)
downloadnumpy-675c81d574553a0eb0ddbbbdf2933be08c982a7a.tar.gz
Removed an unneccessary return statement in a unit test.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/lib/tests/test_io.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py
index 8c1bfbfb5..03d4f42e6 100644
--- a/numpy/lib/tests/test_io.py
+++ b/numpy/lib/tests/test_io.py
@@ -336,7 +336,6 @@ class Testfromregex(TestCase):
assert_array_equal(x, a)
def test_record_2(self):
- return # pass this test until #736 is resolved
c = StringIO.StringIO()
c.write('1312 foo\n1534 bar\n4444 qux')
c.seek(0)