aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/dependenciesProperty/dependenciesProperty.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/dependenciesProperty/dependenciesProperty.qbs')
-rw-r--r--tests/auto/blackbox/testdata/dependenciesProperty/dependenciesProperty.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/blackbox/testdata/dependenciesProperty/dependenciesProperty.qbs b/tests/auto/blackbox/testdata/dependenciesProperty/dependenciesProperty.qbs
index 052829c1b..a5ff12eb2 100644
--- a/tests/auto/blackbox/testdata/dependenciesProperty/dependenciesProperty.qbs
+++ b/tests/auto/blackbox/testdata/dependenciesProperty/dependenciesProperty.qbs
@@ -14,11 +14,11 @@ Project {
}
prepare: {
var cmd = new JavaScriptCommand();
- cmd.description = 'generate ' + FileInfo.fileName(output.fileName);
+ cmd.description = 'generate ' + FileInfo.fileName(output.filePath);
cmd.highlight = 'codegen';
cmd.content = JSON.stringify(product.dependencies);
cmd.sourceCode = function() {
- file = new TextFile(output.fileName, TextFile.WriteOnly);
+ file = new TextFile(output.filePath, TextFile.WriteOnly);
file.truncate();
file.write(content);
file.close();