aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_source_encoding.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2025-05-22 13:17:22 +0300
committerGitHub <noreply@github.com>2025-05-22 13:17:22 +0300
commit2602d8ae981c4bae1cada2c174b367d97f712efb (patch)
treeb4b9f49c391469ee1fa894a85303916e47201aa1 /Lib/test/test_source_encoding.py
parentbb244fd33d3eb67923ec3253568867bfaed9895f (diff)
downloadcpython-2602d8ae981c4bae1cada2c174b367d97f712efb.tar.gz
cpython-2602d8ae981c4bae1cada2c174b367d97f712efb.zip
gh-71339: Use new assertion methods in tests (GH-129046)
Diffstat (limited to 'Lib/test/test_source_encoding.py')
-rw-r--r--Lib/test/test_source_encoding.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_source_encoding.py b/Lib/test/test_source_encoding.py
index 61b00778f83..1399f3fcd2d 100644
--- a/Lib/test/test_source_encoding.py
+++ b/Lib/test/test_source_encoding.py
@@ -145,8 +145,7 @@ class MiscSourceEncodingTest(unittest.TestCase):
compile(input, "<string>", "exec")
expected = "'ascii' codec can't decode byte 0xe2 in position 16: " \
"ordinal not in range(128)"
- self.assertTrue(c.exception.args[0].startswith(expected),
- msg=c.exception.args[0])
+ self.assertStartsWith(c.exception.args[0], expected)
def test_file_parse_error_multiline(self):
# gh96611: