aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtDeclarative/bug_456.py
diff options
context:
space:
mode:
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__':