We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46efbcb commit b5bb960Copy full SHA for b5bb960
pandas/tests/sparse/test_array.py
@@ -661,7 +661,7 @@ class TestSparseArrayAnalytics(object):
661
([1.0, 2.0, 1.0], 1.0, 0.0)
662
])
663
def test_all(self, data, pos, neg):
664
- # GH 17386
+ # GH 17570
665
out = SparseArray(data).all()
666
assert out
667
@@ -681,7 +681,7 @@ def test_all(self, data, pos, neg):
681
682
683
def test_numpy_all(self, data, pos, neg):
684
685
out = np.all(SparseArray(data))
686
687
@@ -705,7 +705,7 @@ def test_numpy_all(self, data, pos, neg):
705
([0.0, 2.0, 0.0], 2.0, 0.0)
706
707
def test_any(self, data, pos, neg):
708
709
out = SparseArray(data).any()
710
711
@@ -725,7 +725,7 @@ def test_any(self, data, pos, neg):
725
726
727
def test_numpy_any(self, data, pos, neg):
728
729
out = np.any(SparseArray(data))
730
731
0 commit comments