diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-11-11 05:03:56 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-11-11 05:03:56 (GMT) |
commit | e46072cc655e263863abd6bd94bfa628d8aeeeec (patch) | |
tree | 22e5428f071a4789206bffc156b59e253f3138be /tests | |
parent | d31c4b65ae552750bc9af21fca2a3748c544b5be (diff) | |
download | Qt-e46072cc655e263863abd6bd94bfa628d8aeeeec.zip Qt-e46072cc655e263863abd6bd94bfa628d8aeeeec.tar.gz Qt-e46072cc655e263863abd6bd94bfa628d8aeeeec.tar.bz2 |
Fix error message (warning often have trailing spaces)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative/qmlgraphicsloader/tst_qmlgraphicsloader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qmlgraphicsloader/tst_qmlgraphicsloader.cpp b/tests/auto/declarative/qmlgraphicsloader/tst_qmlgraphicsloader.cpp index 8fda991..a88026b 100644 --- a/tests/auto/declarative/qmlgraphicsloader/tst_qmlgraphicsloader.cpp +++ b/tests/auto/declarative/qmlgraphicsloader/tst_qmlgraphicsloader.cpp @@ -114,7 +114,7 @@ void tst_QmlGraphicsLoader::component() void tst_QmlGraphicsLoader::invalidUrl() { -// QTest::ignoreMessage(QtWarningMsg, "(:-1: File error for URL file://" SRCDIR "/IDontExist.qml)"); + QTest::ignoreMessage(QtWarningMsg, "(:-1: File error for URL file://" SRCDIR "/IDontExist.qml) "); QmlComponent component(&engine, QByteArray("import Qt 4.6\nLoader { source: \"IDontExist.qml\" }"), QUrl("file://" SRCDIR "/")); QmlGraphicsLoader *loader = qobject_cast<QmlGraphicsLoader*>(component.create()); |