Skip to content

Commit 1598830

Browse files
committed
add GH
1 parent 3b296d6 commit 1598830

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/formats/test_style.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1692,7 +1692,7 @@ def test_no_cell_ids(self):
16921692
assert s.find('<td class="data row0 col0" >') != -1
16931693

16941694
def test_tooltip_render(self):
1695-
# GH XXXXX
1695+
# GH 21266
16961696
df = pd.DataFrame(data=[[0, 1], [2, 3]])
16971697
ttips = pd.DataFrame(
16981698
data=[["Min", ""], [np.nan, "Max"]], columns=df.columns, index=df.index
@@ -1722,7 +1722,7 @@ def test_tooltip_render(self):
17221722
)
17231723

17241724
def test_tooltip_ignored(self):
1725-
# GH XXXXX
1725+
# GH 21266
17261726
df = pd.DataFrame(data=[[0, 1], [2, 3]])
17271727
s = Styler(df, uuid="_") # no set_tooltips()
17281728
assert '<style type="text/css" >\n</style>' in s.render()

0 commit comments

Comments
 (0)