diff options
Diffstat (limited to 'tests/test_domain_std.py')
-rw-r--r-- | tests/test_domain_std.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_domain_std.py b/tests/test_domain_std.py index 9d3e7f9c4..e98384824 100644 --- a/tests/test_domain_std.py +++ b/tests/test_domain_std.py @@ -371,5 +371,5 @@ def test_productionlist(app, status, warning): ('SecondLine', 'firstLineRule.html#grammar-token-_secondline', 'SecondLine'), ] - text = (app.outdir / 'LineContinuation.html').text() - assert "A</strong> ::= B C D E F G" in text
\ No newline at end of file + text = (app.outdir / 'LineContinuation.html').read_text() + assert "A</strong> ::= B C D E F G" in text |