summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/proper quoting/proper quoting.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/proper quoting/proper quoting.qbs')
-rw-r--r--tests/auto/blackbox/testdata/proper quoting/proper quoting.qbs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/blackbox/testdata/proper quoting/proper quoting.qbs b/tests/auto/blackbox/testdata/proper quoting/proper quoting.qbs
index 3330b8263..1587940a2 100644
--- a/tests/auto/blackbox/testdata/proper quoting/proper quoting.qbs
+++ b/tests/auto/blackbox/testdata/proper quoting/proper quoting.qbs
@@ -1,7 +1,9 @@
+import qbs.Host
+
Project {
Product {
condition: {
- var result = qbs.targetPlatform === qbs.hostPlatform;
+ var result = qbs.targetPlatform === Host.platform();
if (!result)
console.info("targetPlatform differs from hostPlatform");
return result;