Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
VikParuchuri committed Jan 24, 2025
1 parent 5fc0546 commit d3c43d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/renderers/test_markdown_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_markdown_renderer_tables(pdf_document):

cell = TableCell(
polygon=table.polygon,
text_lines=["54<i>.45</i>67<br>89"],
text_lines=["54<i>.45</i>67<br>89<math>x</math>"],
rowspan=1,
colspan=1,
row_id=0,
Expand All @@ -59,6 +59,6 @@ def test_markdown_renderer_tables(pdf_document):

renderer = MarkdownRenderer()
md = renderer(pdf_document).markdown
assert "54 .45 67<br>89" in md
assert "54 <i>.45</i> 67<br>89 $x$" in md


0 comments on commit d3c43d6

Please sign in to comment.