summaryrefslogtreecommitdiffstats
path: root/tests/functional/snapshot/test_snap_rebalance.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/snapshot/test_snap_rebalance.py')
-rw-r--r--tests/functional/snapshot/test_snap_rebalance.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/functional/snapshot/test_snap_rebalance.py b/tests/functional/snapshot/test_snap_rebalance.py
index d4062f43b..8cbc18ca5 100644
--- a/tests/functional/snapshot/test_snap_rebalance.py
+++ b/tests/functional/snapshot/test_snap_rebalance.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2017-2018 Red Hat, Inc. <http://www.redhat.com>
+# Copyright (C) 2017-2020 Red Hat, Inc. <http://www.redhat.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -21,7 +21,6 @@ Test Cases in this module tests the
Creation of clone from snapshot of one volume.
"""
-import sys
from glusto.core import Glusto as g
@@ -175,9 +174,9 @@ class SnapshotRebalance(GlusterBaseClass):
# write files to mountpoint
g.log.info("Starting IO on %s mountpoint...", self.mount1)
all_mounts_procs = []
- cmd = ("/usr/bin/env python%d %s create_files "
+ cmd = ("/usr/bin/env python %s create_files "
"-f 10 --base-file-name file %s" % (
- sys.version_info.major, self.script_upload_path,
+ self.script_upload_path,
self.mount1))
proc = g.run(self.clients[0], cmd)
all_mounts_procs.append(proc)