aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/QTBUG-51237
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/QTBUG-51237
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/QTBUG-51237')
-rw-r--r--tests/auto/blackbox/testdata/QTBUG-51237/qtbug-51237.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/blackbox/testdata/QTBUG-51237/qtbug-51237.qbs b/tests/auto/blackbox/testdata/QTBUG-51237/qtbug-51237.qbs
index e1f8d8ef6..6edea9dc6 100644
--- a/tests/auto/blackbox/testdata/QTBUG-51237/qtbug-51237.qbs
+++ b/tests/auto/blackbox/testdata/QTBUG-51237/qtbug-51237.qbs
@@ -10,7 +10,7 @@ Product {
fileTags: ["custom"]
}
prepare: {
- var theProperty = product.moduleProperty("mymodule", "theProperty");
+ var theProperty = product.mymodule.theProperty;
if (!theProperty)
throw "Oh no!";
var dummy = new JavaScriptCommand();