aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2011-04-28 15:59:55 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:54:16 -0300
commit42d7f881d5d06b30365e03176b610412925d6431 (patch)
tree151760a624e87796c7919b490c75e10249882efa
parentcecd566782a01e41464ac2f6273f63fd78b57b8b (diff)
Fixed bug 728 to use the correct arguments on function call.ps-1.0.2
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
-rw-r--r--tests/QtGui/bug_728.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/QtGui/bug_728.py b/tests/QtGui/bug_728.py
index f9a5c8b1e..b95e1b3a6 100644
--- a/tests/QtGui/bug_728.py
+++ b/tests/QtGui/bug_728.py
@@ -5,4 +5,4 @@ app = QApplication([])
QTimer.singleShot(200, app.quit)
# This test for a dead lock in QFileDialog.getOpenFileNames, the test fail with a timeout if the dead lock exists.
-QFileDialog.getOpenFileNames(None, "caption", QDir.homePath(), None, QFileDialog.DontUseNativeDialog)
+QFileDialog.getOpenFileNames(None, "caption", QDir.homePath(), None, "", QFileDialog.DontUseNativeDialog)