From 72e5b93e2447a3f6ccf1ac0a6797156e7cb61579 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 13 May 2020 12:45:47 -0700 Subject: [PATCH] Fix test (and rebase) --- Lib/test/test_cmd_line_script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py index 171340581af228..15fca7b8a5191e 100644 --- a/Lib/test/test_cmd_line_script.py +++ b/Lib/test/test_cmd_line_script.py @@ -633,7 +633,7 @@ def test_syntaxerror_multi_line_fstring(self): stderr.splitlines()[-3:], [ b' foo"""', - b' ^', + b' ^', b'SyntaxError: f-string: empty expression not allowed', ], )