summaryrefslogtreecommitdiff
path: root/tests/functional-tests/common/utils/system.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional-tests/common/utils/system.py')
-rw-r--r--tests/functional-tests/common/utils/system.py2
1 files changed, 1 insertions, 1 deletions
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):