Skip to content

Commit 8d261d4

Browse files
committed
Fix oversights
1 parent 6fc3d84 commit 8d261d4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pandas/tests/frame/test_api.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def test_axis_aliases(self, float_frame):
349349
tm.assert_series_equal(result, expected)
350350

351351
def test_class_axis(self):
352-
# https://github.com/pandas-dev/pandas/issues/18147
352+
# GH 18147
353353
# no exception and no empty docstring
354354
assert pydoc.getdoc(DataFrame.index)
355355
assert pydoc.getdoc(DataFrame.columns)
@@ -498,7 +498,7 @@ def _check_f(base, f):
498498
_check_f(d.copy(), f)
499499

500500
def test_tab_complete_warning(self, ip):
501-
# https://github.com/pandas-dev/pandas/issues/16409
501+
# GH 16409
502502
pytest.importorskip('IPython', minversion="6.0.0")
503503
from IPython.core.completer import provisionalcompleter
504504

pandas/tests/frame/test_apply.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ def f():
883883
'abs', 'shift', 'pct_change', 'cumsum', 'rank',
884884
])
885885
def test_transform_method_name(self, method):
886-
# https://github.com/pandas-dev/pandas/issues/19760
886+
# GH 19760
887887
df = DataFrame({"A": [-1, 2]})
888888
result = df.transform(method)
889889
expected = operator.methodcaller(method)(df)
@@ -907,7 +907,7 @@ def test_demo(self):
907907
tm.assert_frame_equal(result.reindex_like(expected), expected)
908908

909909
def test_agg_multiple_mixed_no_warning(self):
910-
# https://github.com/pandas-dev/pandas/issues/20909
910+
# GH 20909
911911
mdf = DataFrame({'A': [1, 2, 3],
912912
'B': [1., 2., 3.],
913913
'C': ['foo', 'bar', 'baz'],

0 commit comments

Comments
 (0)