diff options
-rw-r--r-- | Lib/test/test_sha.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_sha.py b/Lib/test/test_sha.py index 47c540f..ea224e4 100644 --- a/Lib/test/test_sha.py +++ b/Lib/test/test_sha.py @@ -40,6 +40,9 @@ class SHATestCase(unittest.TestCase): self.check("a" * 1000000, "34aa973cd4c4daa4f61eeb2bdbad27316534016f") + def test_case_4(self): + self.check(chr(0xAA) * 80, + '4ca0ef38f1794b28a8f8ee110ee79d48ce13be25') def test_main(): test_support.run_unittest(SHATestCase) |