Skip to content

Commit 6f619b5

Browse files
committed
32-bit compat
1 parent 24f48c3 commit 6f619b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/arrays/sparse/test_accessor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class TestSeriesAccessor(object):
1111
# TODO: collect other accessor tests
1212
def test_to_dense(self):
13-
s = pd.Series([0, 1, 0, 10], dtype='Sparse[int]')
13+
s = pd.Series([0, 1, 0, 10], dtype='Sparse[int64]')
1414
result = s.sparse.to_dense()
1515
expected = pd.Series([0, 1, 0, 10])
1616
tm.assert_series_equal(result, expected)

0 commit comments

Comments
 (0)