summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2020-05-13 12:45:47 -0700
committerGuido van Rossum <guido@python.org>2020-05-13 12:45:47 -0700
commit72e5b93e2447a3f6ccf1ac0a6797156e7cb61579 (patch)
treee87ed41d7bda982d68e57c928c00fdedd482a5c6
parentea1c6f23492ea2baad8cefe7a47d07c0c7807579 (diff)
downloadcpython-git-72e5b93e2447a3f6ccf1ac0a6797156e7cb61579.tar.gz
Fix test (and rebase)
-rw-r--r--Lib/test/test_cmd_line_script.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py
index 171340581a..15fca7b8a5 100644
--- a/Lib/test/test_cmd_line_script.py
+++ b/Lib/test/test_cmd_line_script.py
@@ -633,7 +633,7 @@ class CmdLineTest(unittest.TestCase):
stderr.splitlines()[-3:],
[
b' foo"""',
- b' ^',
+ b' ^',
b'SyntaxError: f-string: empty expression not allowed',
],
)