Skip to content

Commit

Permalink
COMPAT: skip 32-bit test on int repr (#17664)
Browse files Browse the repository at this point in the history
closes #17121
  • Loading branch information
jreback committed Sep 25, 2017
1 parent 83c9205 commit e0fe5cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/frame/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ def test_itertuples(self):
assert (list(dfaa.itertuples()) ==
[(0, 1, 1), (1, 2, 2), (2, 3, 3)])

# repr with be int/long on windows
if not compat.is_platform_windows():
# repr with be int/long on 32-bit/windows
if not (compat.is_platform_windows() or compat.is_platform_32bit()):
assert (repr(list(df.itertuples(name=None))) ==
'[(0, 1, 4), (1, 2, 5), (2, 3, 6)]')

Expand Down

0 comments on commit e0fe5cc

Please sign in to comment.