summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@twistedmatrix.com>2014-04-19 09:51:29 -0400
committerJean-Paul Calderone <exarkun@twistedmatrix.com>2014-04-19 09:51:29 -0400
commit5a82db9e1d9215e4fc1308e9f5631f8c2ceb5170 (patch)
tree0c6ca89073e535648eddf23980a9382db039d6e6
parenteb86f3ab2d8d237e1369e9308e7df330fa1f8a9e (diff)
downloadpyopenssl-5a82db9e1d9215e4fc1308e9f5631f8c2ceb5170.tar.gz
restore even more python 3.2 compat!
-rw-r--r--OpenSSL/test/test_crypto.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSSL/test/test_crypto.py b/OpenSSL/test/test_crypto.py
index ba0055f..b37dc94 100644
--- a/OpenSSL/test/test_crypto.py
+++ b/OpenSSL/test/test_crypto.py
@@ -3107,7 +3107,7 @@ class EllipticCurveTests(TestCase):
with a name which does not identify a supported curve.
"""
self.assertRaises(
- ValueError, get_elliptic_curve, u"this curve was just invented")
+ ValueError, get_elliptic_curve, u("this curve was just invented"))
def test_repr(self):