Skip to content

Commit fbcdf36

Browse files
committed
TST: windows test fix re GH8103
1 parent 3ec0fe1 commit fbcdf36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tools/tests/test_pivot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ def test_pivot_dtaccessor(self):
559559
values='value1')
560560

561561
exp_col = MultiIndex.from_arrays([[7, 7, 8, 8, 9, 9], [1, 2] * 3])
562-
expected = DataFrame(np.array([[0, 3, 1, 4, 2, 5]]),
562+
expected = DataFrame(np.array([[0, 3, 1, 4, 2, 5]],dtype='int64'),
563563
index=[2013], columns=exp_col)
564564
tm.assert_frame_equal(result, expected)
565565

0 commit comments

Comments
 (0)