Skip to content

Commit 0364bae

Browse files
committed
TST: windows dtype test fix for tests_indexing/test_imethods_with_dups
1 parent f94a8d5 commit 0364bae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_indexing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def test_imethods_with_dups(self):
339339
# GH6493
340340
# iat/iloc with dups
341341

342-
s = Series(range(5), index=[1,1,2,2,3])
342+
s = Series(range(5), index=[1,1,2,2,3], dtype='int64')
343343
result = s.iloc[2]
344344
self.assertEqual(result,2)
345345
result = s.iat[2]

0 commit comments

Comments
 (0)