summaryrefslogtreecommitdiffstats
path: root/tests/auto/unit/qwavedecoder/tst_qwavedecoder.cpp
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-11-09 14:14:08 +1000
committerQt by Nokia <qt-info@nokia.com>2011-11-10 06:45:27 +0100
commit34cdc41a935766a7d773cb7e2bdb7ce27711dd9d (patch)
tree2ee0419423273b8b41b0ea0f1ca748d33d373b17 /tests/auto/unit/qwavedecoder/tst_qwavedecoder.cpp
parent23af917dc5b9f6b06bf3cee9741e87394e4f2189 (diff)
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: Ib6225572a46eac7881222fdce192750b8b13ee3b Reviewed-by: Steve Schilz <sschilz@pasco.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/unit/qwavedecoder/tst_qwavedecoder.cpp')
-rw-r--r--tests/auto/unit/qwavedecoder/tst_qwavedecoder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/unit/qwavedecoder/tst_qwavedecoder.cpp b/tests/auto/unit/qwavedecoder/tst_qwavedecoder.cpp
index a84879b0c..ee4d7ab34 100644
--- a/tests/auto/unit/qwavedecoder/tst_qwavedecoder.cpp
+++ b/tests/auto/unit/qwavedecoder/tst_qwavedecoder.cpp
@@ -166,7 +166,7 @@ void tst_QWaveDecoder::file()
QSignalSpy parsingErrorSpy(&waveDecoder, SIGNAL(parsingError()));
if (corruption == NotAWav) {
- QSKIP("Not all failures detected correctly yet", SkipSingle);
+ QSKIP("Not all failures detected correctly yet");
QTRY_COMPARE(parsingErrorSpy.count(), 1);
QCOMPARE(validFormatSpy.count(), 0);
} else if (corruption == NoSampleData) {
@@ -229,7 +229,7 @@ void tst_QWaveDecoder::http()
QSignalSpy parsingErrorSpy(&waveDecoder, SIGNAL(parsingError()));
if (corruption == NotAWav) {
- QSKIP("Not all failures detected correctly yet", SkipSingle);
+ QSKIP("Not all failures detected correctly yet");
QTRY_COMPARE(parsingErrorSpy.count(), 1);
QCOMPARE(validFormatSpy.count(), 0);
} else if (corruption == NoSampleData) {