@@ -661,7 +661,7 @@ class TestSparseArrayAnalytics(object):
661
661
([1.0 , 2.0 , 1.0 ], 1.0 , 0.0 )
662
662
])
663
663
def test_all (self , data , pos , neg ):
664
- # GH 17386
664
+ # GH 17570
665
665
out = SparseArray (data ).all ()
666
666
assert out
667
667
@@ -681,7 +681,7 @@ def test_all(self, data, pos, neg):
681
681
([1.0 , 2.0 , 1.0 ], 1.0 , 0.0 )
682
682
])
683
683
def test_numpy_all (self , data , pos , neg ):
684
- # GH 17386
684
+ # GH 17570
685
685
out = np .all (SparseArray (data ))
686
686
assert out
687
687
@@ -705,7 +705,7 @@ def test_numpy_all(self, data, pos, neg):
705
705
([0.0 , 2.0 , 0.0 ], 2.0 , 0.0 )
706
706
])
707
707
def test_any (self , data , pos , neg ):
708
- # GH 17386
708
+ # GH 17570
709
709
out = SparseArray (data ).any ()
710
710
assert out
711
711
@@ -725,7 +725,7 @@ def test_any(self, data, pos, neg):
725
725
([0.0 , 2.0 , 0.0 ], 2.0 , 0.0 )
726
726
])
727
727
def test_numpy_any (self , data , pos , neg ):
728
- # GH 17386
728
+ # GH 17570
729
729
out = np .any (SparseArray (data ))
730
730
assert out
731
731
0 commit comments