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
commitebb2c91a0224e1271cd269def0defeb9ac061ac6 (patch)
tree1f8f7596b680bfd45b96b2247cd94c409d60a52f
parent06ef0622ccda6d5aee8943a1a152ef73f9a28585 (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);