From 41a5ee82eaa24499d5720fcedf3ccef04ab6fe4b Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 31 Aug 2022 13:49:25 -0400 Subject: Wrap test_channel_timeout() to 79 characters --- tests/test_client.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tests/test_client.py b/tests/test_client.py index 7b77ef49..01ae2036 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -567,7 +567,11 @@ class SSHClientTest(ClientTest): def _mock_set_remote_channel(self, chainid, init_window, max_packet_size): time.sleep(100) - @patch.object(paramiko.Channel, "_set_remote_channel", _mock_set_remote_channel) + @patch.object( + paramiko.Channel, + "_set_remote_channel", + _mock_set_remote_channel + ) def test_channel_timeout(self): """ verify that the SSHClient has a configurable channel timeout @@ -578,7 +582,11 @@ class SSHClientTest(ClientTest): self.tc.set_missing_host_key_policy(paramiko.AutoAddPolicy()) # Actual connection - self.tc.connect(**dict(self.connect_kwargs, password="pygmalion", channel_timeout=0.5)) + self.tc.connect( + **dict( + self.connect_kwargs, password="pygmalion", channel_timeout=0.5 + ) + ) self.event.wait(1.0) self.assertRaises(paramiko.SSHException, self.tc.open_sftp) -- cgit v1.2.1