summaryrefslogtreecommitdiffstats
path: root/tests/auto/qstyle
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@trolltech.com>2009-09-23 17:48:16 (GMT)
committerOlivier Goffart <ogoffart@trolltech.com>2009-09-23 18:12:40 (GMT)
commitd2180e2fc3c56d56cd073a896d8449181ca28136 (patch)
treeb0e2cd889f700e82920ff706c591457e00680c60 /tests/auto/qstyle
parent0f462990247d71e598346a8f96faf6d04cd4515e (diff)
downloadQt-d2180e2fc3c56d56cd073a896d8449181ca28136.zip
Qt-d2180e2fc3c56d56cd073a896d8449181ca28136.tar.gz
Qt-d2180e2fc3c56d56cd073a896d8449181ca28136.tar.bz2
Stabilize more test
Diffstat (limited to 'tests/auto/qstyle')
-rw-r--r--tests/auto/qstyle/tst_qstyle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qstyle/tst_qstyle.cpp b/tests/auto/qstyle/tst_qstyle.cpp
index 8526be1..56776d7 100644
--- a/tests/auto/qstyle/tst_qstyle.cpp
+++ b/tests/auto/qstyle/tst_qstyle.cpp
@@ -219,7 +219,7 @@ void tst_QStyle::testStyleFactory()
foreach (QString styleName , keys) {
QStyle *style = QStyleFactory::create(styleName);
- QVERIFY(style != 0);
+ QVERIFY2(style != 0, qPrintable(QString::fromLatin1("Fail to load style '%1'").arg(styleName)));
delete style;
}
}