aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/propertyChanges/project.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/propertyChanges/project.qbs')
-rw-r--r--tests/auto/blackbox/testdata/propertyChanges/project.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/blackbox/testdata/propertyChanges/project.qbs b/tests/auto/blackbox/testdata/propertyChanges/project.qbs
index 0cba4f630..f6a48e1d4 100644
--- a/tests/auto/blackbox/testdata/propertyChanges/project.qbs
+++ b/tests/auto/blackbox/testdata/propertyChanges/project.qbs
@@ -44,10 +44,10 @@ Project {
Artifact { fileName: "generated.txt" }
prepare: {
var cmd = new JavaScriptCommand();
- cmd.description = "generating " + output.fileName;
+ cmd.description = "generating " + output.filePath;
cmd.highlight = "codegen";
cmd.sourceCode = function() {
- file = new TextFile(output.fileName, TextFile.WriteOnly);
+ file = new TextFile(output.filePath, TextFile.WriteOnly);
file.truncate();
file.write(product.fileContentPrefix + "contents 1"
+ project.fileContentSuffix);