summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorcgohlke <cgohlke@uci.edu>2012-08-07 19:15:08 -0700
committercgohlke <cgohlke@uci.edu>2012-08-07 19:15:08 -0700
commit1e7979fecc787eed295e82002ee3c7c339c5a09d (patch)
tree662d72475a94b0320eb963d7b2dbc4585857d3ee /numpy
parente391a4461507b1ba89a7ee1167d23fc13a308795 (diff)
downloadnumpy-1e7979fecc787eed295e82002ee3c7c339c5a09d.tar.gz
Remove test_recarray_from_long_formats
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/tests/test_records.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/numpy/core/tests/test_records.py b/numpy/core/tests/test_records.py
index 7b1f9cd55..87c661938 100644
--- a/numpy/core/tests/test_records.py
+++ b/numpy/core/tests/test_records.py
@@ -1,4 +1,3 @@
-import sys
from os import path
import numpy as np
from numpy.testing import *
@@ -112,13 +111,6 @@ class TestFromrecords(TestCase):
assert_equal(a.b, ['a', 'bbb'])
assert_equal(a[-1].b, 'bbb')
- @dec.skipif(sys.version_info[0] > 2)
- def test_recarray_from_long_formats(self):
- # Pull request #376
- a = [[1]]
- ra = np.rec.array(a, shape=1, formats='(1L, 1L)i4')
- assert_equal(a, ra.f0[0])
-
class TestRecord(TestCase):
def setUp(self):