Skip to content

Commit 40d28bc

Browse files
topper-123jreback
authored andcommitted
solve test failure on 32bit systems (#22908)
1 parent b28cf5a commit 40d28bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexes/test_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1379,7 +1379,7 @@ def test_get_indexer_with_NA_values(self, unique_nulls_fixture,
13791379
index = pd.Index(arr, dtype=np.object)
13801380
result = index.get_indexer([unique_nulls_fixture,
13811381
unique_nulls_fixture2, 'Unknown'])
1382-
expected = np.array([0, 1, -1], dtype=np.int64)
1382+
expected = np.array([0, 1, -1], dtype=np.intp)
13831383
tm.assert_numpy_array_equal(result, expected)
13841384

13851385
@pytest.mark.parametrize("method", [None, 'pad', 'backfill', 'nearest'])

0 commit comments

Comments
 (0)