diff options
Diffstat (limited to 'tests/test_autodoc.py')
-rw-r--r-- | tests/test_autodoc.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index c8ab55479..04768b638 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -1411,11 +1411,13 @@ def test_autodoc_typed_instance_variables(app): ' ', ' .. py:attribute:: Class.attr2', ' :module: target.typed_vars', + ' :type: int', ' :value: None', ' ', ' ', ' .. py:attribute:: Class.attr3', ' :module: target.typed_vars', + ' :type: int', ' :value: None', ' ', ' attr3', @@ -1423,6 +1425,7 @@ def test_autodoc_typed_instance_variables(app): ' ', ' .. py:attribute:: Class.attr4', ' :module: target.typed_vars', + ' :type: int', ' :value: None', ' ', ' attr4', @@ -1438,6 +1441,7 @@ def test_autodoc_typed_instance_variables(app): '', '.. py:data:: attr2', ' :module: target.typed_vars', + ' :type: str', " :value: None", '', ' attr2', |