diff options
author | Benjamin Peterson <benjamin@python.org> | 2023-09-20 05:40:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 05:40:34 (GMT) |
commit | 850cc8d0b1db0a912a6e458720e265e6a6e5c1ba (patch) | |
tree | 6024417f102168dd2d0752d2cabb8e04197945fe | |
parent | def828995a35a289c9f03500903b5917df93465f (diff) | |
download | cpython-850cc8d0b1db0a912a6e458720e265e6a6e5c1ba.zip cpython-850cc8d0b1db0a912a6e458720e265e6a6e5c1ba.tar.gz cpython-850cc8d0b1db0a912a6e458720e265e6a6e5c1ba.tar.bz2 |
gh-109559: Update unicodedata checksums for 15.1.0. (#109597)
Update unicodedata checksums for 15.1.0.
-rw-r--r-- | Lib/test/test_unicodedata.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py index 515c384..6adf033 100644 --- a/Lib/test/test_unicodedata.py +++ b/Lib/test/test_unicodedata.py @@ -18,7 +18,7 @@ from test.support import (open_urlresource, requires_resource, script_helper, class UnicodeMethodsTest(unittest.TestCase): # update this, if the database changes - expectedchecksum = 'e708c31c0d51f758adf475cb7201cf80917362be' + expectedchecksum = '63aa77dcb36b0e1df082ee2a6071caeda7f0955e' @requires_resource('cpu') def test_method_checksum(self): @@ -71,7 +71,7 @@ class UnicodeFunctionsTest(UnicodeDatabaseTest): # Update this if the database changes. Make sure to do a full rebuild # (e.g. 'make distclean && make') to get the correct checksum. - expectedchecksum = '26ff0d31c14194b4606a5b3a81ac36df3a14e331' + expectedchecksum = '232affd2a50ec4bd69d2482aa0291385cbdefaba' @requires_resource('cpu') def test_function_checksum(self): |