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
This commit is contained in:
Dave Halter
2019-06-02 22:54:45 +02:00
parent 6cdd47fe2b
commit 5430415d44

View File

@@ -146,7 +146,7 @@ FAILING_EXAMPLES = [
# Now nested parsing
"f'{continue}'",
"f'{1;1}'",
"f'{a*=3}'",
"f'{a;}'",
"f'{b\"\" \"\"}'",
]