Skip to content

Commit 2faa8d4

Browse files
Uncomment uint value limits test.
1 parent 17751f8 commit 2faa8d4

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

dynd/nd/test/test_array_basics.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ def test_contiguous(self):
113113
self.assertFalse(nd.is_c_contiguous(a))
114114
self.assertFalse(nd.is_f_contiguous(a))
115115

116-
"""
117116
def test_uint_value_limits(self):
118117
# Valid maximums
119118
a = nd.array(0xff, type = ndt.uint8)
@@ -129,7 +128,6 @@ def test_uint_value_limits(self):
129128
self.assertRaises(OverflowError, nd.array, 0x10000, type = ndt.uint16)
130129
self.assertRaises(OverflowError, nd.array, 0x100000000, type = ndt.uint32)
131130
self.assertRaises(OverflowError, nd.array, 0x10000000000000000, type = ndt.uint64)
132-
"""
133131

134132
def test_inf(self):
135133
# Validate nd.inf

0 commit comments

Comments
 (0)