restore even more python 3.2 compat!
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 @@
         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):