Skip to content

Commit 19e3e44

Browse files
committed
TST: Fix GitHub PR number in SparseArray.all and any tests
1 parent 13bba7b commit 19e3e44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/tests/sparse/test_array.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ class TestSparseArrayAnalytics(object):
661661
([1.0, 2.0, 1.0], 1.0, 0.0)
662662
])
663663
def test_all(self, data, pos, neg):
664-
# GH 17386
664+
# GH 17570
665665
out = SparseArray(data).all()
666666
assert out
667667

@@ -681,7 +681,7 @@ def test_all(self, data, pos, neg):
681681
([1.0, 2.0, 1.0], 1.0, 0.0)
682682
])
683683
def test_numpy_all(self, data, pos, neg):
684-
# GH 17386
684+
# GH 17570
685685
out = np.all(SparseArray(data))
686686
assert out
687687

@@ -705,7 +705,7 @@ def test_numpy_all(self, data, pos, neg):
705705
([0.0, 2.0, 0.0], 2.0, 0.0)
706706
])
707707
def test_any(self, data, pos, neg):
708-
# GH 17386
708+
# GH 17570
709709
out = SparseArray(data).any()
710710
assert out
711711

@@ -725,7 +725,7 @@ def test_any(self, data, pos, neg):
725725
([0.0, 2.0, 0.0], 2.0, 0.0)
726726
])
727727
def test_numpy_any(self, data, pos, neg):
728-
# GH 17386
728+
# GH 17570
729729
out = np.any(SparseArray(data))
730730
assert out
731731

0 commit comments

Comments
 (0)