diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index 4b7870832e..60a7ad1817 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -364,7 +364,7 @@ class TestClassesAndFunctions(unittest.TestCase): formatted='(*arg1, arg2=1)') self.assertFullArgSpecEquals(mod2.annotated, ['arg1'], - ann_e={'arg1':types.ListType}, + ann_e={'arg1' : list}, formatted='(arg1: list)') def test_getargspec_method(self): |