Skip to content

Commit 3681909

Browse files
committed
COMPAT: windows type testing for int/long, xref #13050
1 parent cd7ba13 commit 3681909

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/series/test_io.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def test_tolist_np_int(self):
189189
# GH10904
190190
for t in ['int8', 'int16', 'int32', 'int64']:
191191
s = pd.Series([1], dtype=t)
192-
self.assertIsInstance(s.tolist()[0], int)
192+
self.assertIsInstance(s.tolist()[0], (int, long))
193193

194194
def test_tolist_np_uint(self):
195195
# GH10904

0 commit comments

Comments
 (0)