summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Blechmann <[email protected]>2025-06-05 11:55:42 +0800
committerTim Blechmann <[email protected]>2025-06-05 18:39:44 +0800
commit0e870a215a378fed8bed7b0b87f5a7246a9a4275 (patch)
tree04fb8b62dba30956271d505038038c4a926b628e
parent45d3cd3ef0747194921ec96ea1c9cefc9ca04da6 (diff)
QSoundEffect: tests - fix test urlHEADdev
`qrc:double-drop.wav` is not a valid qrc url, it should be `qrc:/` Pick-to: 6.8 6.9 6.10 Change-Id: I9bec6d18edfa3a87771dd9361d49970651048297 Reviewed-by: Artem Dyomin <[email protected]>
-rw-r--r--tests/auto/integration/qsoundeffect_concurrent/tst_qsoundeffect_concurrent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/integration/qsoundeffect_concurrent/tst_qsoundeffect_concurrent.cpp b/tests/auto/integration/qsoundeffect_concurrent/tst_qsoundeffect_concurrent.cpp
index 5789ac16d..f68dc0bd7 100644
--- a/tests/auto/integration/qsoundeffect_concurrent/tst_qsoundeffect_concurrent.cpp
+++ b/tests/auto/integration/qsoundeffect_concurrent/tst_qsoundeffect_concurrent.cpp
@@ -25,7 +25,7 @@ private Q_SLOTS:
// See also QTBUG-129597
void play_playsSound_whenMediaBackendInitializedOnWorkerThread()
{
- const QUrl url{ "qrc:double-drop.wav"_L1 };
+ const QUrl url{ "qrc:/double-drop.wav"_L1 };
QAtomicInteger success = true;
size_t threadCount = 3;