From c9ed96c402834136549cc29a37725560b2319431 Mon Sep 17 00:00:00 2001 From: gfyoung Date: Wed, 6 Feb 2019 21:13:25 -0800 Subject: [PATCH] Put test reference comment beneath function def --- pandas/tests/series/test_repr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/series/test_repr.py b/pandas/tests/series/test_repr.py index 795cc136ccfe76..842207f2a572f2 100644 --- a/pandas/tests/series/test_repr.py +++ b/pandas/tests/series/test_repr.py @@ -198,8 +198,8 @@ def test_latex_repr(self): assert s._repr_latex_() is None - # GH 25061 def test_index_repr_in_frame_with_nan(self): + # see gh-25061 i = Index([1, np.nan]) s = Series([1, 2], index=i) exp = """1.0 1\nNaN 2\ndtype: int64"""