aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorVadim Rutkovsky <vrutkovs@redhat.com>2014-05-16 16:41:57 +0800
committerVadim Rutkovsky <vrutkovs@redhat.com>2014-05-16 16:41:57 +0800
commitb897603eacdd68b374f61dd63aee7749ee925211 (patch)
treed0666324ba10612cae15fa3eb486224de4039124 /tests
parentd46ad6d3cd44c3c9b730566cbd7719c2961a9bc9 (diff)
downloadgsoc2013-evolution-b897603eacdd68b374f61dd63aee7749ee925211.tar
gsoc2013-evolution-b897603eacdd68b374f61dd63aee7749ee925211.tar.gz
gsoc2013-evolution-b897603eacdd68b374f61dd63aee7749ee925211.tar.bz2
gsoc2013-evolution-b897603eacdd68b374f61dd63aee7749ee925211.tar.lz
gsoc2013-evolution-b897603eacdd68b374f61dd63aee7749ee925211.tar.xz
gsoc2013-evolution-b897603eacdd68b374f61dd63aee7749ee925211.tar.zst
gsoc2013-evolution-b897603eacdd68b374f61dd63aee7749ee925211.zip
tests: give an app 5 secs to start
Diffstat (limited to 'tests')
-rw-r--r--tests/common_steps.py2
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)