Skip to content

Commit 6c4bca7

Browse files
committed
one more such case
1 parent 7842218 commit 6c4bca7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/indexes/multi/test_indexing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,8 @@ def test_get_indexer_three_or_more_levels():
293293
tm.assert_almost_equal(expected, backfill_indexer)
294294

295295
pad_indexer = mult_idx_2.get_indexer(mult_idx_1, method="pad")
296-
expected = np.array([0, 0, 0, 0, 1, 2, 5, 5, 5, 5, 5, 5],dtype="int64")
296+
expected = np.array([0, 0, 0, 0, 1, 2, 5, 5, 5, 5, 5, 5],
297+
dtype=pad_indexer.dtype)
297298
tm.assert_almost_equal(expected, pad_indexer)
298299

299300

0 commit comments

Comments
 (0)