Skip to content

Commit

Permalink
32-bit compat
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Mar 12, 2019
1 parent 24f48c3 commit 6f619b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/arrays/sparse/test_accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class TestSeriesAccessor(object):
# TODO: collect other accessor tests
def test_to_dense(self):
s = pd.Series([0, 1, 0, 10], dtype='Sparse[int]')
s = pd.Series([0, 1, 0, 10], dtype='Sparse[int64]')
result = s.sparse.to_dense()
expected = pd.Series([0, 1, 0, 10])
tm.assert_series_equal(result, expected)
Expand Down

0 comments on commit 6f619b5

Please sign in to comment.