diff options
Diffstat (limited to 'tests/test_comments.py')
-rw-r--r-- | tests/test_comments.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_comments.py b/tests/test_comments.py index 008dd0d..d2f18b6 100644 --- a/tests/test_comments.py +++ b/tests/test_comments.py @@ -35,8 +35,8 @@ def test_comment(): interface = system.lookup('org.example.echo.Echo') assert interface o = doc.parse_doc(interface.comment) - assert o.brief == 'the brief' - assert o.description == ['the description', 'continues {@link http://qt.io}'] + assert o.brief == ['the brief'] + assert o.description == ['the description', 'continues {@link http://qt.io}', 'continued description'] assert o.deprecated is True assert o.see == ['org.example.echo.Echo', 'org.example', 'http://qt.io'] @@ -50,4 +50,4 @@ def test_qdoc_translate(): assert interface doc.translate = qdoc_translate o = doc.parse_doc(interface.comment) - assert o.description == ['the description', 'continues \\link{http://qt.io}'] + assert o.description == ['the description', 'continues \\link{http://qt.io}', 'continued description'] |