commit | 7535dab3bb8bd134c895d62e5ea6d7998b68a6bd | [log] [tgz] |
---|---|---|
author | Jean-Paul Calderone <exarkun@divmod.com> | Thu Mar 06 18:53:11 2008 -0500 |
committer | Jean-Paul Calderone <exarkun@divmod.com> | Thu Mar 06 18:53:11 2008 -0500 |
tree | 82aaa2c51a641863e61f39ab7af62ffb56d0ca0a | |
parent | ac930e1f2900bf5e94bc875cad48b09606c92341 [diff] [blame] |
*Really* make X509NameTests Python 2.3 compatible
diff --git a/test/test_crypto.py b/test/test_crypto.py index c55a979..d7b8850 100644 --- a/test/test_crypto.py +++ b/test/test_crypto.py
@@ -14,6 +14,11 @@ return self.failUnless(*a, **kw) + def assertFalse(self, *a, **kw): + return self.failIf(*a, **kw) + + + class PKeyTests(TestCase, _Python23TestCaseHelper): """ Unit tests for L{OpenSSL.crypto.PKey}.