diff --git a/tests/test_parser.py b/tests/test_parser.py index 9bce37a02..8d9e8ef43 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -156,8 +156,6 @@ def test_no_infinite_loop(self): parser = EarleyCommitParser(A) # Test that computing the parse tree doesn't hang parser.parse_tree() - # Test that getting captures doesn't hang - parser.get_captures() @pytest.mark.timeout(5) def test_no_infinite_loop_with_terminal(self): @@ -174,8 +172,6 @@ def test_no_infinite_loop_with_terminal(self): parser = EarleyCommitParser(A) # Test that computing the parse tree doesn't hang parser.parse_tree() - # Test that getting captures doesn't hang - parser.get_captures() @pytest.mark.timeout(5) def test_no_infinite_loop_extra_indirection(self): @@ -200,8 +196,6 @@ def test_no_infinite_loop_extra_indirection(self): parser = EarleyCommitParser(A) # Test that computing the parse tree doesn't hang parser.parse_tree() - # Test that getting captures doesn't hang - parser.get_captures() @pytest.mark.timeout(5) def test_captures_from_root(self):