We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24f48c3 commit 6f619b5Copy full SHA for 6f619b5
pandas/tests/arrays/sparse/test_accessor.py
@@ -10,7 +10,7 @@
10
class TestSeriesAccessor(object):
11
# TODO: collect other accessor tests
12
def test_to_dense(self):
13
- s = pd.Series([0, 1, 0, 10], dtype='Sparse[int]')
+ s = pd.Series([0, 1, 0, 10], dtype='Sparse[int64]')
14
result = s.sparse.to_dense()
15
expected = pd.Series([0, 1, 0, 10])
16
tm.assert_series_equal(result, expected)
0 commit comments