changeset: 103469:ef3d30cc6b4f parent: 103467:a25c39873d93 user: Gregory P. Smith date: Fri Sep 09 14:48:08 2016 -0700 files: Lib/lib2to3/tests/test_parser.py description: issue27985 - fix the incorrect duplicate class name in the lib2to3 test. call it TestVarAnnotations instead. diff -r a25c39873d93 -r ef3d30cc6b4f Lib/lib2to3/tests/test_parser.py --- a/Lib/lib2to3/tests/test_parser.py Fri Sep 09 14:07:44 2016 -0700 +++ b/Lib/lib2to3/tests/test_parser.py Fri Sep 09 14:48:08 2016 -0700 @@ -256,7 +256,7 @@ # Adapted from Python 3's Lib/test/test_grammar.py:GrammarTests.test_var_annot -class TestFunctionAnnotations(GrammarTest): +class TestVarAnnotations(GrammarTest): def test_1(self): self.validate("var1: int = 5")