diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2011-05-20 12:25:24 (GMT) |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2011-05-20 12:28:53 (GMT) |
commit | acea7c9f5ece102f22d264834b6eece21020adf4 (patch) | |
tree | c1113cb1473b4a5ba6c3c9d6653a8f88a76bf132 | |
parent | bdd8f188ac352c99ee218318a59089f387a31d60 (diff) | |
download | Qt-acea7c9f5ece102f22d264834b6eece21020adf4.zip Qt-acea7c9f5ece102f22d264834b6eece21020adf4.tar.gz Qt-acea7c9f5ece102f22d264834b6eece21020adf4.tar.bz2 |
QDeclarativeDebug: Fix autotest
-rw-r--r-- | tests/auto/declarative/qdeclarativedebug/tst_qdeclarativedebug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qdeclarativedebug/tst_qdeclarativedebug.cpp b/tests/auto/declarative/qdeclarativedebug/tst_qdeclarativedebug.cpp index d3c7032..9582f09 100644 --- a/tests/auto/declarative/qdeclarativedebug/tst_qdeclarativedebug.cpp +++ b/tests/auto/declarative/qdeclarativedebug/tst_qdeclarativedebug.cpp @@ -1012,7 +1012,7 @@ void tst_QDeclarativeDebug::setBindingForObject() // set handler // rootObject = findRootObject(); - QCOMPARE(rootObject.children().size(), 4); // Rectangle, Text, MouseArea, QDeclarativeComponentAttached + QCOMPARE(rootObject.children().size(), 5); // Rectangle, Text, MouseArea, Component.onCompleted, NonScriptPropertyElement QDeclarativeDebugObjectReference mouseAreaObject = rootObject.children().at(2); QDeclarativeDebugObjectQuery *q_obj = m_dbg->queryObjectRecursive(mouseAreaObject, this); waitForQuery(q_obj); |