summaryrefslogtreecommitdiffstats
path: root/tests/auto/qbluetoothsocket/tst_qbluetoothsocket.cpp
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-10-19 15:00:28 +1000
committerQt by Nokia <qt-info@nokia.com>2011-11-09 02:33:53 +0100
commitae1cbc39bfdbf42a2788e8a94ca1e7f4e1058641 (patch)
tree1b7d430fc0f2a69d8be26465a6ab73ef4037aeb4 /tests/auto/qbluetoothsocket/tst_qbluetoothsocket.cpp
parentc13b8cc4721ca3ddbc7741061480c45c962baa5b (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: Iae4432e57a12064b86f9a56cad73fecb56bdaaa9 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com> Reviewed-by: Alex <alex.blasche@nokia.com>
Diffstat (limited to 'tests/auto/qbluetoothsocket/tst_qbluetoothsocket.cpp')
-rw-r--r--tests/auto/qbluetoothsocket/tst_qbluetoothsocket.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qbluetoothsocket/tst_qbluetoothsocket.cpp b/tests/auto/qbluetoothsocket/tst_qbluetoothsocket.cpp
index 8e848249..6eda9938 100644
--- a/tests/auto/qbluetoothsocket/tst_qbluetoothsocket.cpp
+++ b/tests/auto/qbluetoothsocket/tst_qbluetoothsocket.cpp
@@ -310,7 +310,7 @@ void tst_QBluetoothSocket::tst_clientConnection()
qDebug() << errorSpy.takeFirst().at(0).toInt();
if (loop--)
goto tryagain;
- QSKIP("Connection error", SkipSingle);
+ QSKIP("Connection error");
}
QCOMPARE(connectedSpy.count(), 1);
QCOMPARE(stateSpy.count(), 1);
@@ -446,7 +446,7 @@ void tst_QBluetoothSocket::tst_serviceConnection()
if (errorSpy.count() != 0) {
qDebug() << errorSpy.takeFirst().at(0).toInt();
- QSKIP("Connection error", SkipSingle);
+ QSKIP("Connection error");
}
QCOMPARE(connectedSpy.count(), 1);
QCOMPARE(stateSpy.count(), 1);