From 694ba70a5bf6ea042cc8d6f8cda4fa6b3f9ea26e Mon Sep 17 00:00:00 2001 From: Jason McDonald Date: Wed, 19 Oct 2011 13:57:18 +1000 Subject: Remove SkipMode parameter from QSKIP. The SkipMode parameter has been removed from the API in qtbase, so it must be in all calls to QSKIP. Task-number: QTBUG-21851, QTBUG-21652 Change-Id: I8f5d6488637acd5e38d3c8dd418ff3776b2f3778 Reviewed-by: Rohan McGovern --- tests/auto/qxmlquery/tst_qxmlquery.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/auto/qxmlquery') diff --git a/tests/auto/qxmlquery/tst_qxmlquery.cpp b/tests/auto/qxmlquery/tst_qxmlquery.cpp index c524282..241a43a 100644 --- a/tests/auto/qxmlquery/tst_qxmlquery.cpp +++ b/tests/auto/qxmlquery/tst_qxmlquery.cpp @@ -1998,7 +1998,7 @@ void tst_QXmlQuery::fnDocNetworkAccessSuccess() const QStringList testsToSkip; testsToSkip << "http scheme" << "ftp scheme"; if (testsToSkip.contains(QTest::currentDataTag())) - QSKIP("Network tests are currently unsupported on Windows CE.", SkipSingle); + QSKIP("Network tests are currently unsupported on Windows CE."); #endif QFETCH(QUrl, uriToOpen); @@ -2532,7 +2532,7 @@ void tst_QXmlQuery::setQueryQUrlSuccess() const QStringList testsToSkip; testsToSkip << "A valid query via the ftp scheme" << "A valid query via the http scheme"; if (testsToSkip.contains(QTest::currentDataTag())) - QSKIP("Network tests are currently unsupported on Windows CE.", SkipSingle); + QSKIP("Network tests are currently unsupported on Windows CE."); #endif QFETCH(QUrl, queryURI); -- cgit v1.2.1