summaryrefslogtreecommitdiffstats
path: root/tests/functional/snapshot/test_snap_uss_while_io.py
diff options
context:
space:
mode:
authorkshithijiyer <kshithij.ki@gmail.com>2020-03-06 18:51:49 +0530
committerVaibhav Mahajan <vamahaja@redhat.com>2020-03-09 08:19:07 +0000
commitfea99a7f768b58edea4a6ce3198ce3899e4c2eea (patch)
treea05e5c0bc27b319c791661cbbbbf67efd20e4aef /tests/functional/snapshot/test_snap_uss_while_io.py
parent3877be9b91476bb31abdc5d76347cd6190d41fad (diff)
[Testfix] Remove python version dependency(Part 5)
Please refer to commit message of patch [1]. [1] https://review.gluster.org/#/c/glusto-tests/+/24140/ Change-Id: I5319ce497ca3359e0e7dbd9ece481bada1ee2205 Signed-off-by: kshithijiyer <kshithij.ki@gmail.com>
Diffstat (limited to 'tests/functional/snapshot/test_snap_uss_while_io.py')
-rw-r--r--tests/functional/snapshot/test_snap_uss_while_io.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/functional/snapshot/test_snap_uss_while_io.py b/tests/functional/snapshot/test_snap_uss_while_io.py
index 9f5c91e4c..d11c9663c 100644
--- a/tests/functional/snapshot/test_snap_uss_while_io.py
+++ b/tests/functional/snapshot/test_snap_uss_while_io.py
@@ -21,7 +21,6 @@ Test Cases in this module tests the
uss functionality while io is going on.
"""
-import sys
from glusto.core import Glusto as g
@@ -141,9 +140,9 @@ class SnapshotUssWhileIo(GlusterBaseClass):
"%s", mount_obj.client_system, mount_obj.mountpoint)
# Create files
g.log.info('Creating files...')
- command = ("/usr/bin/env python%d %s create_files -f 100 "
+ command = ("/usr/bin/env python %s create_files -f 100 "
"--fixed-file-size 1M %s" % (
- sys.version_info.major, self.script_upload_path,
+ self.script_upload_path,
mount_obj.mountpoint))
proc = g.run_async(mount_obj.client_system, command,
user=mount_obj.user)