Removed unnecessary try-except
diff --git a/OpenSSL/test/test_ssl.py b/OpenSSL/test/test_ssl.py
index bbdd7ec..39e878f 100644
--- a/OpenSSL/test/test_ssl.py
+++ b/OpenSSL/test/test_ssl.py
@@ -2370,10 +2370,7 @@
                          client.state_string().decode())
 
         for conn in [server, client]:
-            try:
-                conn.do_handshake()
-            except WantReadError:
-                pass
+            conn.do_handshake()
 
         self.assertEqual('SSL negotiation finished successfully',
                          server.state_string().decode())