Skip to content

Commit 2a53113

Browse files
committed
TST: compat of tests xref #12615 on windows
1 parent 0f3a7b8 commit 2a53113

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_format.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3498,7 +3498,7 @@ def test_mixed_datetime64(self):
34983498
def test_period(self):
34993499
# GH 12615
35003500
index = pd.period_range('2013-01', periods=6, freq='M')
3501-
s = Series(np.arange(6), index=index)
3501+
s = Series(np.arange(6, dtype='int64'), index=index)
35023502
exp = ("2013-01 0\n2013-02 1\n2013-03 2\n2013-04 3\n"
35033503
"2013-05 4\n2013-06 5\nFreq: M, dtype: int64")
35043504
self.assertEqual(str(s), exp)

0 commit comments

Comments
 (0)