aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtDeclarative/bug_456.py
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-12-28 14:50:46 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:48:05 -0300
commit92b893c53242a191b76291f8fb0ce68fd284c115 (patch)
tree4a8e4e5da01122dc1e48e4a6aeb72c3fccbde7a5 /tests/QtDeclarative/bug_456.py
parent6d18229268b42db54824cc277e339bac34ad3404 (diff)
Fix bug#563 - "Unhandled signal emitting with invalid signature (which leads to application crash)"
Diffstat (limited to 'tests/QtDeclarative/bug_456.py')
-rw-r--r--tests/QtDeclarative/bug_456.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/QtDeclarative/bug_456.py b/tests/QtDeclarative/bug_456.py
index 262b82e48..9ed70c86f 100644
--- a/tests/QtDeclarative/bug_456.py
+++ b/tests/QtDeclarative/bug_456.py
@@ -33,7 +33,7 @@ class TestConnectionWithInvalidSignature(TimedQApplication):
root = view.rootObject()
button = root.findChild(QtCore.QObject, "buttonMouseArea")
view.show()
- button.clicked.emit()
+ button.entered.emit()
self.assertEqual(rotatevalue.rotation, 100)
if __name__ == '__main__':