]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-111929: Fix regrtest --pgo: test_str => test_unicode (#111938)
authorVictor Stinner <vstinner@python.org>
Fri, 10 Nov 2023 09:32:06 +0000 (10:32 +0100)
committerGitHub <noreply@github.com>
Fri, 10 Nov 2023 09:32:06 +0000 (09:32 +0000)
test_unicode was renamed to test_str in Python 3.13, but Python 3.12
still uses test_unicode name.

Lib/test/libregrtest/pgo.py

index e3a6927be5db1d18e2e45d007fb878aad32d7565..cabbba73d5eff50003aa75aac3a638009f192366 100644 (file)
@@ -42,10 +42,10 @@ PGO_TESTS = [
     'test_set',
     'test_sqlite3',
     'test_statistics',
-    'test_str',
     'test_struct',
     'test_tabnanny',
     'test_time',
+    'test_unicode',
     'test_xml_etree',
     'test_xml_etree_c',
 ]