Skip to content

Commit

Permalink
32-bit compat
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Jul 3, 2019
1 parent c917575 commit bd2cbfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/extension/base/methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_argsort(self, data_for_sorting):

def test_argsort_missing_array(self, data_missing_for_sorting):
result = data_missing_for_sorting.argsort()
expected = np.array([2, 0, 1])
expected = np.array([2, 0, 1], dtype=np.dtype("int"))
tm.assert_numpy_array_equal(result, expected)

def test_argsort_missing(self, data_missing_for_sorting):
Expand Down

0 comments on commit bd2cbfd

Please sign in to comment.