]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] gh-111929: Fix regrtest --pgo: test_str => test_unicode (GH-111938) (#111940)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 10 Nov 2023 09:54:38 +0000 (10:54 +0100)
committerGitHub <noreply@github.com>
Fri, 10 Nov 2023 09:54:38 +0000 (09:54 +0000)
gh-111929: Fix regrtest --pgo: test_str => test_unicode (GH-111938)

test_unicode was renamed to test_str in Python 3.13, but Python 3.12
still uses test_unicode name.
(cherry picked from commit 5f42a2bc4017f2ed023f9cf19fdbffabd57527f5)

Co-authored-by: Victor Stinner <vstinner@python.org>
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',
 ]