aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_569.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/bug_569.py')
-rw-r--r--tests/QtGui/bug_569.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/QtGui/bug_569.py b/tests/QtGui/bug_569.py
index 00d92ed54..c31a4ca0b 100644
--- a/tests/QtGui/bug_569.py
+++ b/tests/QtGui/bug_569.py
@@ -9,9 +9,9 @@ class TestBug569(unittest.TestCase):
types = (QTableWidgetItem, QListWidgetItem, QTreeWidgetItem)
for t in types:
a = t()
- a.__lt__ = lambda(other) : True
+ a.__lt__ = lambda other : True
b = t()
- b.__lt__ = lambda(other) : False
+ b.__lt__ = lambda other : False
self.assertTrue(a < b)
self.assertFalse(b < a)