Skip to content

Commit c73a20e

Browse files
committed
TST: very basic test for DataFrame._repr_html_
1 parent b570153 commit c73a20e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/tests/test_format.py

+3
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,9 @@ def test_to_html_with_no_bold(self):
296296
ashtml = x.to_html(bold_rows=False)
297297
assert('<strong>' not in ashtml)
298298

299+
def test_repr_html(self):
300+
self.frame._repr_html_()
301+
299302

300303
class TestSeriesFormatting(unittest.TestCase):
301304

0 commit comments

Comments
 (0)