From bc68266a688d19dca1cd0b1309a450289a834f8d Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 26 May 2017 13:01:50 -0400 Subject: [PATCH] Remove a todo that was a duplicate. --- test/test_parser_tree.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/test_parser_tree.py b/test/test_parser_tree.py index 902b7bf..8d27fd6 100644 --- a/test/test_parser_tree.py +++ b/test/test_parser_tree.py @@ -51,8 +51,6 @@ class TestsFunctionAndLambdaParsing(object): assert node.is_generator() is expected.get('is_generator', False) def test_yields(self, node, expected): - # TODO: There's a comment in the code noting that the current - # implementation is incorrect. assert node.is_generator() == expected.get('yields', False) def test_annotation(self, node, expected):