Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sinaatalay committed Dec 25, 2024
1 parent 11f50a1 commit 108e7f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_rendercv_tinytex.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ def test_run_pdftex(tmp_path):
latex_file_path.write_text(
"\\documentclass{article}\n"
"\\usepackage[T1]{fontenc}\n"
"\\usepackage{charter}\n"
"\\begin{document}\n"
"\\section{Hello, world!}\n"
"This is a test.\n"
"\\end{document}\n"
)

run_pdftex(latex_file_path)
pdf_file_path = run_pdftex(latex_file_path)

pdf_file_path = latex_file_path.with_suffix(".pdf")
assert pdf_file_path.is_file()

0 comments on commit 108e7f6

Please sign in to comment.