summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data/tst_faviconDownload.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qmltests/data/tst_faviconDownload.qml')
-rw-r--r--tests/auto/quick/qmltests/data/tst_faviconDownload.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/auto/quick/qmltests/data/tst_faviconDownload.qml b/tests/auto/quick/qmltests/data/tst_faviconDownload.qml
index e4dfb36aa..406dfa3ea 100644
--- a/tests/auto/quick/qmltests/data/tst_faviconDownload.qml
+++ b/tests/auto/quick/qmltests/data/tst_faviconDownload.qml
@@ -35,6 +35,10 @@ TestWebEngineView {
width: 200
height: 400
+ function removeFaviconProviderPrefix(url) {
+ return url.toString().substring(16)
+ }
+
SignalSpy {
id: iconChangedSpy
target: webEngineView
@@ -108,7 +112,7 @@ TestWebEngineView {
iconChangedSpy.wait()
compare(iconChangedSpy.count, 1)
- var iconUrl = webEngineView.icon
+ var iconUrl = removeFaviconProviderPrefix(webEngineView.icon)
compare(iconUrl, row.expectedIconUrl)
}
}