diff options
author | Benjamin Peterson <benjamin@python.org> | 2024-09-13 14:47:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 14:47:04 (GMT) |
commit | bb904e063d0cbe4c7c83ebfa5fbed2d9c4980a64 (patch) | |
tree | 1890918db77077f687c0f8bcfa9fb4d6669bd08c /Lib/test/string_tests.py | |
parent | a9594a34c62487961be86c0925daaa43bb467bb9 (diff) | |
download | cpython-bb904e063d0cbe4c7c83ebfa5fbed2d9c4980a64.zip cpython-bb904e063d0cbe4c7c83ebfa5fbed2d9c4980a64.tar.gz cpython-bb904e063d0cbe4c7c83ebfa5fbed2d9c4980a64.tar.bz2 |
closes gh-124016: update Unicode to 16.0.0 (#124017)
Diffstat (limited to 'Lib/test/string_tests.py')
-rw-r--r-- | Lib/test/string_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py index 9bb0ce7..4b82d51 100644 --- a/Lib/test/string_tests.py +++ b/Lib/test/string_tests.py @@ -1132,8 +1132,8 @@ class StringLikeTest(BaseTest): self.checkequal('\u2160\u2171\u2172', '\u2170\u2171\u2172', 'capitalize') # check with Ll chars with no upper - nothing changes here - self.checkequal('\u019b\u1d00\u1d86\u0221\u1fb7', - '\u019b\u1d00\u1d86\u0221\u1fb7', 'capitalize') + self.checkequal('\u1d00\u1d86\u0221\u1fb7', + '\u1d00\u1d86\u0221\u1fb7', 'capitalize') def test_startswith(self): self.checkequal(True, 'hello', 'startswith', 'he') |