Signed-off-by: Cleber Rosa <cr...@redhat.com> --- tests/acceptance/linux_ssh_mips_malta.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/acceptance/linux_ssh_mips_malta.py b/tests/acceptance/linux_ssh_mips_malta.py index 275659c785..ab6cb94aef 100644 --- a/tests/acceptance/linux_ssh_mips_malta.py +++ b/tests/acceptance/linux_ssh_mips_malta.py @@ -79,8 +79,8 @@ class LinuxSSH(Test): port = get_info_usernet_hostfwd_port(res) if not port: self.cancel("Failed to retrieve SSH port") - self.log.debug("sshd listening on port:" + port) - self.ssh_session = ssh.Session(self.VM_IP, port=int(port), + self.log.debug("sshd listening on port: %d", port) + self.ssh_session = ssh.Session(self.VM_IP, port=port, user=username, password=password) for i in range(10): try: -- 2.25.4