summaryrefslogtreecommitdiff
path: root/tests/test_autodoc.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_autodoc.py')
-rw-r--r--tests/test_autodoc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py
index 024b71002..d290e050b 100644
--- a/tests/test_autodoc.py
+++ b/tests/test_autodoc.py
@@ -1025,7 +1025,7 @@ def test_type_hints():
from sphinx.util.inspect import getargspec
try:
- from typing_test_data import f0, f1, f2, f3, f4, f5, f6, f7, f8, f9
+ from typing_test_data import f0, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10
except (ImportError, SyntaxError):
raise SkipTest('Cannot import Python code with function annotations')
@@ -1066,4 +1066,4 @@ def test_type_hints():
' y: typing.Tuple[int, ...]) -> None')
# Instance annotations
- verify_arg_spec(f9, '(x: CustomAnnotation, y: 123) -> None')
+ verify_arg_spec(f10, '(x: CustomAnnotation, y: 123) -> None')