Skip to content

Commit 83e1e3e

Browse files
committed
black fix
1 parent 1598830 commit 83e1e3e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/tests/io/formats/test_style.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1707,7 +1707,8 @@ def test_tooltip_render(self):
17071707
in s
17081708
)
17091709
assert (
1710-
'<td id="T__row0_col0" class="data row0 col0" >0<span class="pd-t"></span></td>'
1710+
'<td id="T__row0_col0" class="data row0 col0" >0<span class="pd-t">'
1711+
+ "</span></td>"
17111712
in s
17121713
)
17131714
# test 'Max' tooltip added
@@ -1717,7 +1718,8 @@ def test_tooltip_render(self):
17171718
in s
17181719
)
17191720
assert (
1720-
'<td id="T__row1_col1" class="data row1 col1" >3<span class="pd-t"></span></td>'
1721+
'<td id="T__row1_col1" class="data row1 col1" >3<span class="pd-t">'
1722+
+ "</span></td>"
17211723
in s
17221724
)
17231725

0 commit comments

Comments
 (0)