From: mjoerg Date: Sat, 11 Feb 2023 15:34:15 +0000 (+0100) Subject: Fix typo in test_fstring.py (#101823) X-Git-Tag: v3.12.0a6~183 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3eb12df8b526aa5a2ca6b43f21a1c5e7d38ee634;p=thirdparty%2FPython%2Fcpython.git Fix typo in test_fstring.py (#101823) --- diff --git a/Lib/test/test_fstring.py b/Lib/test/test_fstring.py index a50056da116e..b3f6ef41d77b 100644 --- a/Lib/test/test_fstring.py +++ b/Lib/test/test_fstring.py @@ -667,7 +667,7 @@ x = ( "f'''{\t\f\r\n}'''", ]) - # Different error messages are raised when a specfier ('!', ':' or '=') is used after an empty expression + # Different error messages are raised when a specifier ('!', ':' or '=') is used after an empty expression self.assertAllRaise(SyntaxError, "f-string: expression required before '!'", ["f'{!r}'", "f'{ !r}'",