diff options
Diffstat (limited to 'tests/test_smartquotes.py')
-rw-r--r-- | tests/test_smartquotes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_smartquotes.py b/tests/test_smartquotes.py index 697a7592c..d4d31f4e8 100644 --- a/tests/test_smartquotes.py +++ b/tests/test_smartquotes.py @@ -31,7 +31,7 @@ def test_text_builder(app, status, warning): def test_man_builder(app, status, warning): app.build() - content = (app.outdir / 'python.1').read_text() + content = (app.outdir / '1' / 'python.1').read_text() assert '\\-\\- "Sphinx" is a tool that makes it easy ...' in content @@ -84,5 +84,5 @@ def test_smartquotes_excludes_language(app, status, warning): def test_smartquotes_excludes_builders(app, status, warning): app.build() - content = (app.outdir / 'python.1').read_text() + content = (app.outdir / '1' / 'python.1').read_text() assert '– “Sphinx” is a tool that makes it easy …' in content |