Fix up some pytest-related stuff (#601)

diff --git a/tests/test_ssl.py b/tests/test_ssl.py
index 44a042b..adefb1d 100644
--- a/tests/test_ssl.py
+++ b/tests/test_ssl.py
@@ -2041,8 +2041,8 @@
 
     def test_peek(self):
         """
-        `Connection.recv` peeks into the connection if `socket.MSG_PEEK`
-        is passed.
+        `Connection.recv` peeks into the connection if `socket.MSG_PEEK` is
+        passed.
         """
         server, client = loopback()
         server.send(b'xy')
@@ -2052,8 +2052,8 @@
 
     def test_connect_wrong_args(self):
         """
-        `Connection.connect` raises `TypeError` if called with
-        a non-address argument.
+        `Connection.connect` raises `TypeError` if called with a non-address
+        argument.
         """
         connection = Connection(Context(TLSv1_METHOD), socket())
         with pytest.raises(TypeError):