summaryrefslogtreecommitdiffstats
path: root/tests/functional/snapshot/test_256_snapshots.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_256_snapshots.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_256_snapshots.py')
-rw-r--r--tests/functional/snapshot/test_256_snapshots.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/functional/snapshot/test_256_snapshots.py b/tests/functional/snapshot/test_256_snapshots.py
index 75df2ed4f..77aaae591 100644
--- a/tests/functional/snapshot/test_256_snapshots.py
+++ b/tests/functional/snapshot/test_256_snapshots.py
@@ -14,7 +14,6 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-import sys
from time import sleep
from glusto.core import Glusto as g
from glustolibs.gluster.exceptions import ExecutionError
@@ -99,10 +98,9 @@ class TestValidateSnaps256(GlusterBaseClass):
# pylint: disable=too-many-statements
# Start IO on all mounts
cmd = (
- "/usr/bin/env python%d %s create_files "
+ "/usr/bin/env python %s create_files "
"-f 10 --base-file-name firstfiles %s"
- % (sys.version_info.major,
- self.script_upload_path,
+ % (self.script_upload_path,
self.mounts[0].mountpoint))
proc = g.run_async(
self.mounts[0].client_system, cmd, user=self.mounts[0].user)