summaryrefslogtreecommitdiff
path: root/pytests/powertest.py
diff options
context:
space:
mode:
Diffstat (limited to 'pytests/powertest.py')
-rwxr-xr-xpytests/powertest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pytests/powertest.py b/pytests/powertest.py
index 55b1aeb37d8..ae2489ab3c3 100755
--- a/pytests/powertest.py
+++ b/pytests/powertest.py
@@ -1123,14 +1123,14 @@ class LocalToRemoteOperations(object):
"""
def __init__( # pylint: disable=too-many-arguments
- self, user_host, retries=2, retry_sleep=30, ssh_connection_options=None,
+ self, user_host, access_retry_count=2, retry_sleep=30, ssh_connection_options=None,
ssh_options=None, shell_binary="/bin/bash", use_shell=False):
"""Initialize LocalToRemoteOperations."""
self.remote_op = remote_operations.RemoteOperations( # pylint: disable=undefined-variable
user_host=user_host, ssh_connection_options=ssh_connection_options,
- ssh_options=ssh_options, retries=retries, retry_sleep=retry_sleep, debug=True,
- shell_binary=shell_binary, use_shell=use_shell)
+ ssh_options=ssh_options, access_retry_count=access_retry_count, retry_sleep=retry_sleep,
+ debug=True, shell_binary=shell_binary, use_shell=use_shell)
def shell(self, cmds, remote_dir=None):
"""Return tuple (ret, output) from performing remote shell operation."""