aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/controls/data/tst_stackview.qml8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/auto/controls/data/tst_stackview.qml b/tests/auto/controls/data/tst_stackview.qml
index 6869ddac..aee82eec 100644
--- a/tests/auto/controls/data/tst_stackview.qml
+++ b/tests/auto/controls/data/tst_stackview.qml
@@ -750,9 +750,13 @@ TestCase {
verify(control)
ignoreWarning("QQmlComponent: Component is not ready")
- control.push("non-existent.qml")
+ ignoreWarning(Qt.resolvedUrl("non-existent.qml") + ":-1 File not found")
+ control.push(Qt.resolvedUrl("non-existent.qml"))
+
ignoreWarning("QQmlComponent: Component is not ready")
- control.replace("non-existent.qml")
+ ignoreWarning(Qt.resolvedUrl("non-existent.qml") + ":-1 File not found")
+ control.replace(Qt.resolvedUrl("non-existent.qml"))
+
control.pop()
control.destroy()