summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2023-01-20 14:11:48 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-01-20 17:42:37 +0000
commit1517ab59ad04bba097dfeb0c6f7ad78f5d579911 (patch)
tree6bc5e5a369a72e39353b6deb366c29480598fe45
parent466834d0ffdea8255a78d0c6d5407ecb3fabfd9c (diff)
Fix QSKIP usage in pauseResume
The macro is declared as variadic, but in practice takes a only single parameter with the skip-reason. Change-Id: Ica0f9dfcf94e09b0e15745313285c3b5ac89f8e7 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io> (cherry picked from commit ac91f22ade4323926f8c2ab1b09d0db661243b66) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tests/auto/qtexttospeech/tst_qtexttospeech.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qtexttospeech/tst_qtexttospeech.cpp b/tests/auto/qtexttospeech/tst_qtexttospeech.cpp
index 097719f..83199f1 100644
--- a/tests/auto/qtexttospeech/tst_qtexttospeech.cpp
+++ b/tests/auto/qtexttospeech/tst_qtexttospeech.cpp
@@ -344,7 +344,7 @@ void tst_QTextToSpeech::pauseResume()
if (engine != "mock" && !hasDefaultAudioOutput())
QSKIP("No audio device present");
if (engine == "macos" || engine == "speechd")
- QSKIP("", "Native speech engine is faulty", Continue);
+ QSKIP("Native speech engine is faulty");
const QString text = QStringLiteral("Hello. World.");
QTextToSpeech tts(engine);