diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-10 09:54:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 09:54:38 (GMT) |
commit | ecc8df2ee0f32de542df8ea26d0c0533c98ba677 (patch) | |
tree | eb00bf2ed6747f4cbcd823f827ba1bf56bf3f53f /Lib/test/libregrtest | |
parent | 0e45786a6aed3d70ad346fd95272858da01464b7 (diff) | |
download | cpython-ecc8df2ee0f32de542df8ea26d0c0533c98ba677.zip cpython-ecc8df2ee0f32de542df8ea26d0c0533c98ba677.tar.gz cpython-ecc8df2ee0f32de542df8ea26d0c0533c98ba677.tar.bz2 |
[3.11] gh-111929: Fix regrtest --pgo: test_str => test_unicode (GH-111938) (#111940)
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>
Diffstat (limited to 'Lib/test/libregrtest')
-rw-r--r-- | Lib/test/libregrtest/pgo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/libregrtest/pgo.py b/Lib/test/libregrtest/pgo.py index e3a6927..cabbba7 100644 --- a/Lib/test/libregrtest/pgo.py +++ b/Lib/test/libregrtest/pgo.py @@ -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', ] |