Skip to content

Commit bd2cbfd

Browse files
committed
32-bit compat
1 parent c917575 commit bd2cbfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/extension/base/methods.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def test_argsort(self, data_for_sorting):
4949

5050
def test_argsort_missing_array(self, data_missing_for_sorting):
5151
result = data_missing_for_sorting.argsort()
52-
expected = np.array([2, 0, 1])
52+
expected = np.array([2, 0, 1], dtype=np.dtype("int"))
5353
tm.assert_numpy_array_equal(result, expected)
5454

5555
def test_argsort_missing(self, data_missing_for_sorting):

0 commit comments

Comments
 (0)