Skip to content

Commit fa0fc2f

Browse files
committed
Unify GH references in frame/test_api.py
1 parent b403a73 commit fa0fc2f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pandas/tests/frame/test_api.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def test_iteritems(self):
192192
assert isinstance(v, self.klass._constructor_sliced)
193193

194194
def test_items(self):
195-
# issue #17213, #13918
195+
# GH 17213, GH 13918
196196
cols = ['a', 'b', 'c']
197197
df = DataFrame([[1, 2, 3], [4, 5, 6]], columns=cols)
198198
for c, (k, v) in zip(cols, df.items()):
@@ -213,7 +213,7 @@ def test_iterrows(self, float_frame, float_string_frame):
213213
self._assert_series_equal(v, exp)
214214

215215
def test_iterrows_iso8601(self):
216-
# GH19671
216+
# GH 19671
217217
if self.klass == SparseDataFrame:
218218
pytest.xfail(reason='SparseBlock datetime type not implemented.')
219219

@@ -354,7 +354,7 @@ def test_axis_aliases(self, float_frame):
354354
assert_series_equal(result, expected)
355355

356356
def test_class_axis(self):
357-
# https://github.com/pandas-dev/pandas/issues/18147
357+
# GH 18147
358358
# no exception and no empty docstring
359359
assert pydoc.getdoc(DataFrame.index)
360360
assert pydoc.getdoc(DataFrame.columns)
@@ -418,7 +418,7 @@ def test_values(self, float_frame):
418418
assert (float_frame.values[:, 0] == 5).all()
419419

420420
def test_as_matrix_deprecated(self, float_frame):
421-
# GH18458
421+
# GH 18458
422422
with tm.assert_produces_warning(FutureWarning):
423423
cols = float_frame.columns.tolist()
424424
result = float_frame.as_matrix(columns=cols)
@@ -439,7 +439,7 @@ def test_transpose_get_view(self, float_frame):
439439
assert (float_frame.values[5:10] == 5).all()
440440

441441
def test_inplace_return_self(self):
442-
# re #1893
442+
# GH 1893
443443

444444
data = DataFrame({'a': ['foo', 'bar', 'baz', 'qux'],
445445
'b': [0, 0, 1, 1],
@@ -503,7 +503,7 @@ def _check_f(base, f):
503503
_check_f(d.copy(), f)
504504

505505
def test_tab_complete_warning(self, ip):
506-
# https://github.com/pandas-dev/pandas/issues/16409
506+
# GH 16409
507507
pytest.importorskip('IPython', minversion="6.0.0")
508508
from IPython.core.completer import provisionalcompleter
509509

0 commit comments

Comments
 (0)