summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@theqtcompany.com>2016-02-01 19:01:03 +0100
committerRobert Loehning <robert.loehning@theqtcompany.com>2016-02-02 10:19:12 +0000
commit8c13f2437e118d19bdb25e264c216f7a85a88175 (patch)
treec782509e536d0675049769f0dbd2ea5ded35b802
parentbba4c33fe66edbbcb9e4094956fe68560b535b22 (diff)
downloadqt-creator-8c13f2437e118d19bdb25e264c216f7a85a88175.tar.gz
Squish: Increase timeout in tst_git_first_commit
Change-Id: Id65b729cd200bb37ad132b4071a263ab61bb3ed8 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--tests/system/suite_tools/tst_git_first_commit/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/suite_tools/tst_git_first_commit/test.py b/tests/system/suite_tools/tst_git_first_commit/test.py
index 67f34da4b4..89ec445ce6 100644
--- a/tests/system/suite_tools/tst_git_first_commit/test.py
+++ b/tests/system/suite_tools/tst_git_first_commit/test.py
@@ -64,7 +64,7 @@ def main():
clickButton(waitForObject(":Select a Git Commit.Show_QPushButton"))
changedEdit = waitForObject(":Qt Creator_DiffEditor::SideDiffEditorWidget")
waitFor("len(str(changedEdit.plainText)) > 0 and "
- "str(changedEdit.plainText) != 'Waiting for data...'", 20000)
+ "str(changedEdit.plainText) != 'Waiting for data...'", 40000)
diffPlainText = str(changedEdit.plainText)
test.verify("# This file is used to ignore files which are generated" in diffPlainText,
"Comment from .gitignore in diff?")