Skip to content

Commit 0ba733c

Browse files
committed
BUG-25061 reference issue in test
1 parent 27b42a5 commit 0ba733c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/series/test_repr.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ def test_latex_repr(self):
198198

199199
assert s._repr_latex_() is None
200200

201-
def test_categorical_index_repr_in_frame_with_nan(self):
201+
# GH 25061
202+
def test_index_repr_in_frame_with_nan(self):
202203
i = Index([1, np.nan])
203204
s = Series([1, 2], index=i)
204205
exp = """1.0 1\nNaN 2\ndtype: int64"""

0 commit comments

Comments
 (0)