Skip to content

Commit d043763

Browse files
committed
Fix failing test
1 parent 79e9577 commit d043763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/StdLib/Lib/test/test_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def test_buffer_info(self):
211211
bi = a.buffer_info()
212212
self.assertIsInstance(bi, tuple)
213213
self.assertEqual(len(bi), 2)
214-
self.assertIsInstance(bi[0], (int, long) if sys.implementation.name == "ironpython" else int)
214+
self.assertIsInstance(bi[0], int)
215215
self.assertIsInstance(bi[1], int)
216216
self.assertEqual(bi[1], len(a))
217217

0 commit comments

Comments
 (0)