aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/qinputdialog_get_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/qinputdialog_get_test.py')
-rw-r--r--tests/QtGui/qinputdialog_get_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/QtGui/qinputdialog_get_test.py b/tests/QtGui/qinputdialog_get_test.py
index c75f71251..ce3a60dfa 100644
--- a/tests/QtGui/qinputdialog_get_test.py
+++ b/tests/QtGui/qinputdialog_get_test.py
@@ -15,7 +15,7 @@ class TestInputDialog(TimedQApplication):
self.assertEquals(QtGui.QInputDialog.getInteger(None, "title", "label"), (0, False))
def testGetItem(self):
- (item, bool) = QtGui.QInputDialog.getItem(None, "title", "label", QtCore.QStringList(["1", "2", "3"]))
+ (item, bool) = QtGui.QInputDialog.getItem(None, "title", "label", ["1", "2", "3"])
self.assertEquals(str(item), "1")
def testGetText(self):