aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/probes-and-array-properties
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2017-03-03 14:48:47 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2017-03-09 10:29:34 +0000
commit9a61dce72a870bbc2d497c68d505dc2ddc2a09eb (patch)
tree35aca146bd8bf312835a80e0d3dfdd047e0023be /tests/auto/blackbox/testdata/probes-and-array-properties
parent172e570855208bd04403dfb59f41753536d2dfd2 (diff)
Remove usage of moduleProperty() from some tests
Keep other instances of moduleProperty() to have it still covered as long as it's not yet deprecated. Change-Id: I2bf010c3265af4429986b8c54f3c9bc5f962c629 Reviewed-by: Jake Petroules <jake.petroules@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'tests/auto/blackbox/testdata/probes-and-array-properties')
-rw-r--r--tests/auto/blackbox/testdata/probes-and-array-properties/modules/mymodule/mymodule.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/blackbox/testdata/probes-and-array-properties/modules/mymodule/mymodule.qbs b/tests/auto/blackbox/testdata/probes-and-array-properties/modules/mymodule/mymodule.qbs
index 29809216a..6479bdfac 100644
--- a/tests/auto/blackbox/testdata/probes-and-array-properties/modules/mymodule/mymodule.qbs
+++ b/tests/auto/blackbox/testdata/probes-and-array-properties/modules/mymodule/mymodule.qbs
@@ -24,7 +24,7 @@ Module {
var cmd = new JavaScriptCommand();
cmd.description = "generating dummy";
cmd.sourceCode = function() {
- console.info("prop: " + JSON.stringify(product.moduleProperty("mymodule", "prop")));
+ console.info("prop: " + JSON.stringify(product.mymodule.prop));
}
return [cmd];
}