Skip to content

Commit ba331cd

Browse files
committed
Unify GH references in frame/test_api.py
1 parent 5dae701 commit ba331cd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pandas/tests/frame/test_api.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def test_iteritems(self):
187187
assert isinstance(v, self.klass._constructor_sliced)
188188

189189
def test_items(self):
190-
# issue #17213, #13918
190+
# GH 17213, GH 13918
191191
cols = ['a', 'b', 'c']
192192
df = DataFrame([[1, 2, 3], [4, 5, 6]], columns=cols)
193193
for c, (k, v) in zip(cols, df.items()):
@@ -208,7 +208,7 @@ def test_iterrows(self, float_frame, float_string_frame):
208208
self._assert_series_equal(v, exp)
209209

210210
def test_iterrows_iso8601(self):
211-
# GH19671
211+
# GH 19671
212212
if self.klass == SparseDataFrame:
213213
pytest.xfail(reason='SparseBlock datetime type not implemented.')
214214

@@ -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)
@@ -413,7 +413,7 @@ def test_values(self, float_frame):
413413
assert (float_frame.values[:, 0] == 5).all()
414414

415415
def test_as_matrix_deprecated(self, float_frame):
416-
# GH18458
416+
# GH 18458
417417
with tm.assert_produces_warning(FutureWarning):
418418
cols = float_frame.columns.tolist()
419419
result = float_frame.as_matrix(columns=cols)
@@ -434,7 +434,7 @@ def test_transpose_get_view(self, float_frame):
434434
assert (float_frame.values[5:10] == 5).all()
435435

436436
def test_inplace_return_self(self):
437-
# re #1893
437+
# GH 1893
438438

439439
data = DataFrame({'a': ['foo', 'bar', 'baz', 'qux'],
440440
'b': [0, 0, 1, 1],
@@ -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

0 commit comments

Comments
 (0)