summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorRichard Moore <rich@kde.org>2012-02-21 22:44:08 +0000
committerQt by Nokia <qt-info@nokia.com>2012-02-22 17:32:32 +0100
commit194898bab9a02c442627714af569c8fa4d981df2 (patch)
treefb64426c59ba28880a42f69bd11802adef3a486e /tests/auto
parent541949aed23ea14a71a7d4391bac244b623add0a (diff)
Fix breakage in dead code
Change-Id: Ibcddfb711a3f47bf957a4b010330e8a775f1a2e8 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/xml/dom/qdom/tst_qdom.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/xml/dom/qdom/tst_qdom.cpp b/tests/auto/xml/dom/qdom/tst_qdom.cpp
index d79044157a..1533e6a139 100644
--- a/tests/auto/xml/dom/qdom/tst_qdom.cpp
+++ b/tests/auto/xml/dom/qdom/tst_qdom.cpp
@@ -1845,7 +1845,7 @@ void tst_QDom::checkIntOverflow() const
QVERIFY(doc.setContent(xmlMessage));
const QDomNodeList nl(doc.elementsByTagName(QLatin1String("test")));
- QCOMPARE(nl.length(), uint(1));
+ QCOMPARE(nl.length(), 1);
}
}