increase default delay in waitForSignal to 5sec for travis tests

This commit is contained in:
Matt Broadstone 2014-06-09 15:18:37 -04:00
parent aff5fb70b7
commit 182b493119
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ public:
virtual ~TestCase() {}
protected:
bool waitForSignal(QObject *obj, const char *signal, int delay = 1)
bool waitForSignal(QObject *obj, const char *signal, int delay = 5)
{
QObject::connect(obj, signal, &QTestEventLoop::instance(), SLOT(exitLoop()));
QPointer<QObject> safe = obj;