summaryrefslogtreecommitdiffstats
path: root/tests/functional/snapshot/test_snapshot_create.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/snapshot/test_snapshot_create.py')
-rw-r--r--tests/functional/snapshot/test_snapshot_create.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/functional/snapshot/test_snapshot_create.py b/tests/functional/snapshot/test_snapshot_create.py
index daa7fdfa5..677199f21 100644
--- a/tests/functional/snapshot/test_snapshot_create.py
+++ b/tests/functional/snapshot/test_snapshot_create.py
@@ -19,7 +19,6 @@ Description : The purpose of this test is to validate snapshot create
"""
-import sys
from glusto.core import Glusto as g
@@ -153,13 +152,13 @@ class SnapCreate(GlusterBaseClass):
for mount_obj in self.mounts:
g.log.info("Starting IO on %s:%s", mount_obj.client_system,
mount_obj.mountpoint)
- cmd = ("/usr/bin/env python%d %s create_deep_dirs_with_files "
+ cmd = ("/usr/bin/env python %s create_deep_dirs_with_files "
"--dirname-start-num %d "
"--dir-depth 2 "
"--dir-length 10 "
"--max-num-of-dirs 5 "
"--num-of-files 5 %s" % (
- sys.version_info.major, self.script_upload_path, count,
+ self.script_upload_path, count,
mount_obj.mountpoint))
proc = g.run_async(mount_obj.client_system, cmd,
user=mount_obj.user)