Skip to content

Commit bb693c7

Browse files
committed
Fix test for 32-bit environment
1 parent 7847923 commit bb693c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/series/test_constructors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,8 +418,8 @@ def test_constructor_numpy_scalar(self):
418418
# GH 19342
419419
# construction with a numpy scalar
420420
# should not raise
421-
result = Series(np.array(100), index=np.arange(4))
422-
expected = Series(100, index=np.arange(4))
421+
result = Series(np.array(100), index=np.arange(4), dtype='int64')
422+
expected = Series(100, index=np.arange(4), dtype='int64')
423423
tm.assert_series_equal(result, expected)
424424

425425
def test_constructor_corner(self):

0 commit comments

Comments
 (0)