This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch 2.8.x in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit ec3311ccc38e9141792996855b7cb5079746ccb7 Author: Tomaz Muraus <[email protected]> AuthorDate: Sat Apr 4 00:16:12 2020 +0200 Update test cases. --- libcloud/test/compute/test_ssh_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcloud/test/compute/test_ssh_client.py b/libcloud/test/compute/test_ssh_client.py index b308028..6334c1b 100644 --- a/libcloud/test/compute/test_ssh_client.py +++ b/libcloud/test/compute/test_ssh_client.py @@ -227,7 +227,7 @@ class ParamikoSSHClientTests(LibcloudTestCase): conn_params = {'hostname': 'dummy.host.org', 'username': 'ubuntu', 'key_material': private_key, - 'key_password': 'foobar'} + 'password': 'foobar'} mock = ParamikoSSHClient(**conn_params) self.assertTrue(mock.connect()) @@ -235,7 +235,7 @@ class ParamikoSSHClientTests(LibcloudTestCase): conn_params = {'hostname': 'dummy.host.org', 'username': 'ubuntu', 'key_files': path, - 'key_password': 'foobar'} + 'password': 'foobar'} mock = ParamikoSSHClient(**conn_params) self.assertTrue(mock.connect())
