summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2023-01-20 14:11:48 +0100
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2023-01-20 17:46:14 +0100
commitac91f22ade4323926f8c2ab1b09d0db661243b66 (patch)
tree86b593f0e4e0bbc5066a36e2dd0f40dca564b24d /tests
parentc88a00a9b45448d2d9693cfd5faa9b1c0918ff47 (diff)
Fix QSKIP usage in pauseResume
The macro is declared as variadic, but in practice takes a only single parameter with the skip-reason. Pick-to: 6.5 6.4 Change-Id: Ica0f9dfcf94e09b0e15745313285c3b5ac89f8e7 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
Diffstat (limited to 'tests')
-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);