summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2019-03-06 17:55:18 +0100
committerRebecca Worledge <rebecca.worledge@theqtcompany.com>2019-03-12 15:24:58 +0000
commit0aeea1fa9eaad559dc075142b9304cb0dd22adaa (patch)
tree7a47166ef81b6693b957fbdb832bdebcaf4e9399
parent11194e8c38f5a8eef11f9d9e9b72508d8923722d (diff)
testApp/main.qml: Don't use absolute paths in urls
With relative paths, the test can also be run in qmlscene. Change-Id: Id735a74ba7c647a37dfe87873a120d55b23e4be4 Reviewed-by: Rebecca Worledge <rebecca.worledge@theqtcompany.com>
-rw-r--r--tests/manual/testApp/main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/testApp/main.qml b/tests/manual/testApp/main.qml
index fdc1878..56d6f89 100644
--- a/tests/manual/testApp/main.qml
+++ b/tests/manual/testApp/main.qml
@@ -56,7 +56,7 @@ Window {
y: 10 * index
loops: LottieAnimation.Infinite
quality: LottieAnimation.MediumQuality
- source: ":/rect_rotate.json"
+ source: "rect_rotate.json"
}
}
}