aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRenato Araujo Oliveira Filho <renato.filho@openbossa.org>2010-11-17 19:55:43 -0300
committerRenato Araujo Oliveira Filho <renato.filho@openbossa.org>2010-11-19 15:14:52 -0300
commit098946263932e115bdbca17eb51c3a27848435e2 (patch)
tree4cc43f7ffac11d9533607008599e16ad84d8ff33
parent43e499a4faf7c7cacdba026bc87eda24a7d02e23 (diff)
Fixed recursive call on duck punching test.
Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
-rw-r--r--tests/QtCore/duck_punching_test.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/QtCore/duck_punching_test.py b/tests/QtCore/duck_punching_test.py
index 880a8e435..e1b9f7fee 100644
--- a/tests/QtCore/duck_punching_test.py
+++ b/tests/QtCore/duck_punching_test.py
@@ -32,7 +32,6 @@ class TestDuckPunchingOnQObjectInstance(UsesQCoreApplication):
parent = QObject()
def childEvent(obj, event):
self.duck_childEvent_called = True
- QObject.childEvent(obj, event)
parent.childEvent = types.MethodType(childEvent, parent, QObject)
child = QObject()
child.setParent(parent)