summaryrefslogtreecommitdiff
path: root/pyflakes/test/test_type_annotations.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyflakes/test/test_type_annotations.py')
-rw-r--r--pyflakes/test/test_type_annotations.py20
1 files changed, 6 insertions, 14 deletions
diff --git a/pyflakes/test/test_type_annotations.py b/pyflakes/test/test_type_annotations.py
index b8876cb..03f70bb 100644
--- a/pyflakes/test/test_type_annotations.py
+++ b/pyflakes/test/test_type_annotations.py
@@ -77,24 +77,16 @@ class TestTypeAnnotations(TestCase):
def test_not_a_typing_overload(self):
"""regression test for @typing.overload detection bug in 2.1.0"""
self.flakes("""
- x = lambda f: f
+ def foo(x):
+ return x
- @x
- def t():
+ @foo
+ def bar():
pass
- y = lambda f: f
-
- @x
- @y
- def t():
- pass
-
- @x
- @y
- def t():
+ def bar():
pass
- """, m.RedefinedWhileUnused, m.RedefinedWhileUnused)
+ """, m.RedefinedWhileUnused)
@skipIf(version_info < (3, 6), 'new in Python 3.6')
def test_variable_annotations(self):