diff options
Diffstat (limited to 'tests/test_client.py')
-rw-r--r-- | tests/test_client.py | 12 |
1 files 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) |