summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/functional-tests/common/utils/helpers.py2
-rw-r--r--tests/functional-tests/common/utils/system.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional-tests/common/utils/helpers.py b/tests/functional-tests/common/utils/helpers.py
index 1eeb771b9..5ad4a4fef 100644
--- a/tests/functional-tests/common/utils/helpers.py
+++ b/tests/functional-tests/common/utils/helpers.py
@@ -575,7 +575,7 @@ class MinerFsHelper (Helper):
FNULL = open ('/dev/null', 'w')
kws = { 'stdout': FNULL }
- subprocess.call ([control_binary, "daemon --kill=miners"], **kws)
+ subprocess.call ([control_binary, "daemon", "--kill=miners"], **kws)
return False
diff --git a/tests/functional-tests/common/utils/system.py b/tests/functional-tests/common/utils/system.py
index 9db5c89fa..eec53cbb6 100644
--- a/tests/functional-tests/common/utils/system.py
+++ b/tests/functional-tests/common/utils/system.py
@@ -214,7 +214,7 @@ class TrackerSystemAbstraction:
def __stop_tracker_processes (self):
control_binary = os.path.join (cfg.BINDIR, "tracker")
FNULL = open('/dev/null', 'w')
- subprocess.call ([control_binary, "daemon -t"], stdout=FNULL)
+ subprocess.call ([control_binary, "daemon", "-t"], stdout=FNULL)
time.sleep (1)
def __recreate_directory (self, directory):