diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-07-06 22:07:08 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-07-06 22:07:08 -0700 |
commit | 96baaae46f5e71699b632a0bb3ad90bf2fbecc69 (patch) | |
tree | 718ff0c0d7947a35f9f8954d7cdf47a75659fa6f /Lib/test/test_unicodedata.py | |
parent | 006c725426e1cbc01906c74488783dcb2df1a5c0 (diff) | |
download | cpython-git-96baaae46f5e71699b632a0bb3ad90bf2fbecc69.tar.gz |
for some reason, you don't get the right checksum from an incremental build
Diffstat (limited to 'Lib/test/test_unicodedata.py')
-rw-r--r-- | Lib/test/test_unicodedata.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py index 38db1304d2..f8788a0588 100644 --- a/Lib/test/test_unicodedata.py +++ b/Lib/test/test_unicodedata.py @@ -79,8 +79,9 @@ class UnicodeDatabaseTest(unittest.TestCase): class UnicodeFunctionsTest(UnicodeDatabaseTest): - # update this, if the database changes - expectedchecksum = '0f44b670846279c608f20e5b6eeb26e6a8ab1f07' + # Update this if the database changes. Make sure to do a full rebuild + # (e.g. 'make distclean && make') to get the correct checksum. + expectedchecksum = '585302895deead0c1c8478c51da9241d4efedca9' def test_function_checksum(self): data = [] h = hashlib.sha1() |