aboutsummaryrefslogtreecommitdiffstats
path: root/tests/qtwebkit/webview_test.py
diff options
context:
space:
mode:
authorLuciano Wolf <luciano.wolf@openbossa.org>2010-05-20 22:07:17 -0300
committerLuciano Wolf <luciano.wolf@openbossa.org>2010-05-21 11:52:26 -0300
commit17f9eed1ad5d04603872f198876047466ba08666 (patch)
tree3ed4e22bd94924b4a116d242467bb1fc291a2127 /tests/qtwebkit/webview_test.py
parent7fd722a38a7ac9ad60113eae825aefa017f210c1 (diff)
Fix bug#218 - TimedQApplication uses a singleton.
It's necessary to use a global TIMEOUT value, big enough to run all the tests without killing the QApp. Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org> Renato Araujo <renato.araujo@openbossa.org>
Diffstat (limited to 'tests/qtwebkit/webview_test.py')
-rw-r--r--tests/qtwebkit/webview_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtwebkit/webview_test.py b/tests/qtwebkit/webview_test.py
index 176d4873e..e1ba7efd6 100644
--- a/tests/qtwebkit/webview_test.py
+++ b/tests/qtwebkit/webview_test.py
@@ -14,7 +14,7 @@ class TestLoadFinished(TimedQApplication):
def setUp(self):
#Acquire resources
- TimedQApplication.setUp(self, timeout=250)
+ TimedQApplication.setUp(self, timeout=1000)
self.view = QWebView()
QObject.connect(self.view, SIGNAL('loadFinished(bool)'),
self.load_finished)