mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Fixed mistake in test for f-string error description (GH-22036) (GH-22059)
This commit is contained in:
parent
5b24d1592a
commit
749ed85e44
2 changed files with 2 additions and 2 deletions
|
@ -1217,7 +1217,7 @@ non-important content
|
|||
def test_with_an_underscore_and_a_comma_in_format_specifier(self):
|
||||
error_msg = re.escape("Cannot specify both ',' and '_'.")
|
||||
with self.assertRaisesRegex(ValueError, error_msg):
|
||||
f'{1:,_}'
|
||||
f'{1:_,}'
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue