diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-12-09 03:09:39 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-12-09 03:09:39 (GMT) |
commit | e569fac3b23885aec1295cb1845a96ca6fca26e2 (patch) | |
tree | 5991ca0d565b02cc326e462158bd5440c1676d35 /tests/auto/declarative/qmlqt | |
parent | bf50114e0a039102b37f7f7a50def33b2275b3b3 (diff) | |
download | Qt-e569fac3b23885aec1295cb1845a96ca6fca26e2.zip Qt-e569fac3b23885aec1295cb1845a96ca6fca26e2.tar.gz Qt-e569fac3b23885aec1295cb1845a96ca6fca26e2.tar.bz2 |
Inline QML still needs a URL so that subtypes are relative to that URL.
Fixes tst_qmlecmascript::dynamicCreation
Diffstat (limited to 'tests/auto/declarative/qmlqt')
-rw-r--r-- | tests/auto/declarative/qmlqt/tst_qmlqt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qmlqt/tst_qmlqt.cpp b/tests/auto/declarative/qmlqt/tst_qmlqt.cpp index 21c5478..f184af0 100644 --- a/tests/auto/declarative/qmlqt/tst_qmlqt.cpp +++ b/tests/auto/declarative/qmlqt/tst_qmlqt.cpp @@ -327,7 +327,7 @@ void tst_qmlqt::createQmlObject() QString warning2 = " " + TEST_FILE("main.qml").toString() + ":4:1: Duplicate property name"; QString warning3 = "QmlEngine::createQmlObject(): Component is not ready"; QString warning4 = "QmlEngine::createQmlObject():"; - QString warning5 = " :3: Cannot assign object type QObject with no default method"; + QString warning5 = " " + TEST_FILE("inline").toString() + ":3: Cannot assign object type QObject with no default method"; QTest::ignoreMessage(QtWarningMsg, qPrintable(warning1)); QTest::ignoreMessage(QtWarningMsg, qPrintable(warning2)); |