summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis Menard <alexis.menard@trolltech.com>2009-04-14 18:56:06 (GMT)
committerAlexis Menard <alexis.menard@trolltech.com>2009-04-14 18:56:06 (GMT)
commita94b601866740e483f093233f59f43b022a68735 (patch)
tree5310b0ae70d64563e4dff12b6250caa636923fdc
parent94a9f77b41c2d924983e92df30e3e4cc7882cb75 (diff)
downloadQt-a94b601866740e483f093233f59f43b022a68735.zip
Qt-a94b601866740e483f093233f59f43b022a68735.tar.gz
Qt-a94b601866740e483f093233f59f43b022a68735.tar.bz2
Fix auto-test failure since we remove the warning in QColor
Reviewed-by: ogoffart
-rw-r--r--tests/auto/qcssparser/tst_cssparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qcssparser/tst_cssparser.cpp b/tests/auto/qcssparser/tst_cssparser.cpp
index 6e277d3..9a984c8 100644
--- a/tests/auto/qcssparser/tst_cssparser.cpp
+++ b/tests/auto/qcssparser/tst_cssparser.cpp
@@ -272,7 +272,7 @@ void tst_CssParser::term_data()
val.variant = QVariant(QColor("#ffbb00"));
QTest::newRow("hexcolor2") << true << "#fb0" << val;
- QTest::ignoreMessage(QtWarningMsg, "QColor::setNamedColor: Could not parse color '#cafebabe'");
+ QTest::ignoreMessage(QtWarningMsg, "QCssParser::parseHexColor: Unknown color name '#cafebabe'");
QTest::newRow("hexcolor_failure") << false << "#cafebabe" << val;
val.type = QCss::Value::Uri;