mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
fix testing on Windows.
This commit is contained in:
parent
6358d62718
commit
39c843106f
@ -97,4 +97,5 @@ def test_latex(app, status, warning):
|
|||||||
def test_latex_add_latex_package(app, status, warning):
|
def test_latex_add_latex_package(app, status, warning):
|
||||||
app.add_latex_package('foo')
|
app.add_latex_package('foo')
|
||||||
app.builder.build_all()
|
app.builder.build_all()
|
||||||
assert '\\usepackage{foo}' in (app.outdir / 'SphinxTests.tex').text()
|
result = (app.outdir / 'SphinxTests.tex').text(encoding='utf8')
|
||||||
|
assert '\\usepackage{foo}' in result
|
||||||
|
Loading…
Reference in New Issue
Block a user