We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c917575 commit bd2cbfdCopy full SHA for bd2cbfd
pandas/tests/extension/base/methods.py
@@ -49,7 +49,7 @@ def test_argsort(self, data_for_sorting):
49
50
def test_argsort_missing_array(self, data_missing_for_sorting):
51
result = data_missing_for_sorting.argsort()
52
- expected = np.array([2, 0, 1])
+ expected = np.array([2, 0, 1], dtype=np.dtype("int"))
53
tm.assert_numpy_array_equal(result, expected)
54
55
def test_argsort_missing(self, data_missing_for_sorting):
0 commit comments