Fixed mistake in test for f-string error description (GH-22036) (GH-22059)

This commit is contained in:
han-solo 2020-09-02 04:56:37 -04:00 committed by GitHub
parent 5b24d1592a
commit 749ed85e44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -514,7 +514,7 @@ class FormatTest(unittest.TestCase):
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):
'{:,_}'.format(1)
'{:_,}'.format(1)
if __name__ == "__main__":
unittest.main()

View File

@ -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()