diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-11-23 18:17:32 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-11-23 18:17:32 +0900 |
commit | fae10db6ca6f9d5c7b0ffc0149ba9db3de314cae (patch) | |
tree | db9aab77c2b28e556e583b3179916ae17de278a0 /tests/test_ext_autodoc.py | |
parent | fafe688cbfbd3a3f9d19fdc427e618c93f3c586d (diff) | |
parent | 259de307cac9312e7a2f107d42606185c3aa8426 (diff) | |
download | sphinx-git-fae10db6ca6f9d5c7b0ffc0149ba9db3de314cae.tar.gz |
Merge branch '4.x'
Diffstat (limited to 'tests/test_ext_autodoc.py')
-rw-r--r-- | tests/test_ext_autodoc.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_ext_autodoc.py b/tests/test_ext_autodoc.py index 8f14392b2..c853fbb03 100644 --- a/tests/test_ext_autodoc.py +++ b/tests/test_ext_autodoc.py @@ -1870,12 +1870,15 @@ def test_autodoc_GenericAlias(app): ' .. py:attribute:: Class.T', ' :module: target.genericalias', '', + ' A list of int', + '', ' alias of :py:class:`~typing.List`\\ [:py:class:`int`]', '', '.. py:attribute:: T', ' :module: target.genericalias', '', - ' alias of :py:class:`~typing.List`\\ [:py:class:`int`]', + ' A list of int', + '', ] else: assert list(actual) == [ |