From 867adbe8b3d7ae9e203693db3d0024466444db7d Mon Sep 17 00:00:00 2001 From: Hudson Cooper Date: Mon, 3 Jun 2024 15:36:28 -0700 Subject: [PATCH] keep parse_tree and get_captures tests separate --- tests/test_parser.py | 6 ------ 1 file changed, 6 deletions(-) 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):