diff options
Diffstat (limited to 'tests/common_steps.py')
-rw-r--r-- | tests/common_steps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/common_steps.py b/tests/common_steps.py index 08b64affb4..d4ab62aca5 100644 --- a/tests/common_steps.py +++ b/tests/common_steps.py @@ -154,7 +154,7 @@ class App(object): assert not self.isRunning(), "Application cannot be stopped" command = "%s %s" % (self.appCommand, self.parameters) - self.pid = run(command, timeout=1) + self.pid = run(command, timeout=5) assert self.isRunning(), "Application failed to start" return root.application(self.a11yAppName) |