diff options
author | Alex Waygood <Alex.Waygood@Gmail.com> | 2023-10-03 12:54:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-03 12:54:21 (GMT) |
commit | dddc757303c6512915ef79b9029213415f1c6f1b (patch) | |
tree | 7fee50d7be432499087966151effec36f05388a9 | |
parent | bb2e96f6f4d6c397c4eb5775a09262a207675577 (diff) | |
download | cpython-dddc757303c6512915ef79b9029213415f1c6f1b.zip cpython-dddc757303c6512915ef79b9029213415f1c6f1b.tar.gz cpython-dddc757303c6512915ef79b9029213415f1c6f1b.tar.bz2 |
gh-110276: Run `test_str`, not `test_unicode`, as part of the PGO build (#110277)
`test_unicode` does not exist
-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 cabbba7..e3a6927 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', ] |