From 5430415d4463900c1780488f9cdddc5eb9814ecc Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 2 Jun 2019 22:54:45 +0200 Subject: [PATCH] Change a test, because it doesn't really matter The test had changed behavior for Python 3.8, a syntax error of: SyntaxError: unexpected EOF while parsing instead of SyntaxError: invalid syntax --- test/failing_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/failing_examples.py b/test/failing_examples.py index 71629da..c15cbf8 100644 --- a/test/failing_examples.py +++ b/test/failing_examples.py @@ -146,7 +146,7 @@ FAILING_EXAMPLES = [ # Now nested parsing "f'{continue}'", "f'{1;1}'", - "f'{a*=3}'", + "f'{a;}'", "f'{b\"\" \"\"}'", ]