aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/additional-product-types.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/language/testdata/additional-product-types.qbs')
-rw-r--r--tests/auto/language/testdata/additional-product-types.qbs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/language/testdata/additional-product-types.qbs b/tests/auto/language/testdata/additional-product-types.qbs
index 686650f42..f84397da3 100644
--- a/tests/auto/language/testdata/additional-product-types.qbs
+++ b/tests/auto/language/testdata/additional-product-types.qbs
@@ -5,8 +5,8 @@ Product {
Depends { name: "dummy" }
Depends { name: "dummy2" }
- property bool hasTag1: type.contains("tag1")
- property bool hasTag2: type.contains("tag2")
- property bool hasTag3: type.contains("tag3")
- property bool hasTag4: type.contains("tag4")
+ property bool hasTag1: type.includes("tag1")
+ property bool hasTag2: type.includes("tag2")
+ property bool hasTag3: type.includes("tag3")
+ property bool hasTag4: type.includes("tag4")
}