aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorKarsten Heimrich <karsten.heimrich@qt.io>2020-10-16 15:02:47 +0200
committerKarsten Heimrich <karsten.heimrich@qt.io>2020-10-21 13:08:08 +0200
commit0ce5018f4b2c4386a89ba5d6a84fb14ea913b824 (patch)
tree8ff3424dbc3b1efb7648432f0a886e10ebfa1649 /tests/auto
parent7f72d97132f33ea5fd8f81945fecde9c8a268186 (diff)
Remove usage of deprecated QStandardPaths::DataLocation
Task-number: QTBUG-87037 Change-Id: Iaf92dd98f616628bf1d6d692847fbdf3138119fe Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/platform/data/tst_standardpaths.qml3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/auto/platform/data/tst_standardpaths.qml b/tests/auto/platform/data/tst_standardpaths.qml
index 841731be..1edc67a8 100644
--- a/tests/auto/platform/data/tst_standardpaths.qml
+++ b/tests/auto/platform/data/tst_standardpaths.qml
@@ -67,7 +67,7 @@ TestCase {
compare(StandardPaths.PicturesLocation, 6)
compare(StandardPaths.TempLocation, 7)
compare(StandardPaths.HomeLocation, 8)
- compare(StandardPaths.DataLocation, 9)
+ compare(StandardPaths.AppLocalDataLocation, 9)
compare(StandardPaths.CacheLocation, 10)
compare(StandardPaths.GenericDataLocation, 11)
compare(StandardPaths.RuntimeLocation, 12)
@@ -77,7 +77,6 @@ TestCase {
compare(StandardPaths.GenericConfigLocation, 16)
compare(StandardPaths.AppDataLocation, 17)
compare(StandardPaths.AppConfigLocation, 18)
- compare(StandardPaths.AppLocalDataLocation, StandardPaths.DataLocation)
}
function test_locateOptions() {