Skip to content

Commit a921117

Browse files
committed
TST: windows dtype issue on testing with GH7866
1 parent 0621f9f commit a921117

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/test_indexing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1944,12 +1944,12 @@ def f():
19441944

19451945
# GH 7866
19461946
# multi-index slicing with missing indexers
1947-
s = pd.Series(np.arange(9),
1947+
s = pd.Series(np.arange(9,dtype='int64'),
19481948
index=pd.MultiIndex.from_product([['A','B','C'],['foo','bar','baz']],
19491949
names=['one','two'])
19501950
).sortlevel()
19511951

1952-
expected = pd.Series(np.arange(3),
1952+
expected = pd.Series(np.arange(3,dtype='int64'),
19531953
index=pd.MultiIndex.from_product([['A'],['foo','bar','baz']],
19541954
names=['one','two'])
19551955
).sortlevel()

0 commit comments

Comments
 (0)