summaryrefslogtreecommitdiffstats
path: root/tests/functional/afr/test_client_side_quorum_with_auto_option.py
diff options
context:
space:
mode:
authorkshithijiyer <kshithij.ki@gmail.com>2019-12-19 15:27:16 +0530
committerBala Konda Reddy M <bmekala@redhat.com>2020-01-07 12:12:51 +0000
commit24f2f1ca2c9213b4d848863d0db6dcd3804f24b8 (patch)
tree9ff1ad1a89edd406475eb3bf715729a3b7f8cfa9 /tests/functional/afr/test_client_side_quorum_with_auto_option.py
parent3d2aa396dd1035c970f180a0fe7d598a0c0c4fe5 (diff)
[Fix] Remove variable script_local_path/script_abs_path(Part 4)
Please refer to the commit message of the below patch: https://review.gluster.org/#/c/glusto-tests/+/23902/ Change-Id: I1df0324dac2da5aad4064cc72ef77dcb5bf67e4f Signed-off-by: kshithijiyer <kshithij.ki@gmail.com>
Diffstat (limited to 'tests/functional/afr/test_client_side_quorum_with_auto_option.py')
-rwxr-xr-xtests/functional/afr/test_client_side_quorum_with_auto_option.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/functional/afr/test_client_side_quorum_with_auto_option.py b/tests/functional/afr/test_client_side_quorum_with_auto_option.py
index ff52c58bd..750ca19ed 100755
--- a/tests/functional/afr/test_client_side_quorum_with_auto_option.py
+++ b/tests/functional/afr/test_client_side_quorum_with_auto_option.py
@@ -50,9 +50,9 @@ class ClientSideQuorumTests(GlusterBaseClass):
# Upload io scripts for running IO on mounts
g.log.info("Upload io scripts to clients %s for running IO on "
"mounts", cls.clients)
- script_abs_path = "/usr/share/glustolibs/io/scripts/file_dir_ops.py"
- cls.script_upload_path = script_abs_path
- ret = upload_scripts(cls.clients, script_abs_path)
+ cls.script_upload_path = ("/usr/share/glustolibs/io/scripts/"
+ "file_dir_ops.py")
+ ret = upload_scripts(cls.clients, cls.script_upload_path)
if not ret:
raise ExecutionError("Failed to upload IO scripts to clients")