bpo-40334: Don't skip test_parser:test_trigget_memory_error (GH-19744)

This test has been changed to always use the old parser, so no need for it to be skipped.
This commit is contained in:
Lysandros Nikolaou 2020-04-28 03:24:50 +03:00 committed by GitHub
parent d55133f49f
commit 3d53d8756f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -900,7 +900,6 @@ class ParserStackLimitTestCase(unittest.TestCase):
st = parser.expr(e) st = parser.expr(e)
st.compile() st.compile()
@support.skip_if_new_parser("Pegen does not trigger memory error with this many parenthesis")
def test_trigger_memory_error(self): def test_trigger_memory_error(self):
e = self._nested_expression(100) e = self._nested_expression(100)
rc, out, err = assert_python_failure('-Xoldparser', '-c', e) rc, out, err = assert_python_failure('-Xoldparser', '-c', e)