diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-11-13 21:51:26 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-11-13 21:51:26 (GMT) |
commit | 88768483235beb5de12addee3d73d4e252f6f7cb (patch) | |
tree | 34bd51023bc32eb2aebadb2352e1d706b20f26a4 /Lib/test/test_hmac.py | |
parent | 135cce87188a81b60ca83c9e17c1669a68c41480 (diff) | |
download | cpython-88768483235beb5de12addee3d73d4e252f6f7cb.zip cpython-88768483235beb5de12addee3d73d4e252f6f7cb.tar.gz cpython-88768483235beb5de12addee3d73d4e252f6f7cb.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_hmac.py')
-rw-r--r-- | Lib/test/test_hmac.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_hmac.py b/Lib/test/test_hmac.py index ef926bd..626b937 100644 --- a/Lib/test/test_hmac.py +++ b/Lib/test/test_hmac.py @@ -45,7 +45,7 @@ class ConstructorTestCase(unittest.TestCase): h = hmac.HMAC("key", "", sha) except: self.fail("Constructor call with sha module raised exception.") - + class SanityTestCase(unittest.TestCase): def test_default_is_md5(self): """Testing if HMAC defaults to MD5 algorithm.""" @@ -106,4 +106,3 @@ def test_main(): if __name__ == "__main__": test_main() - |