aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-05-15 11:28:24 +0200
committerhjk <hjk@qt.io>2019-05-15 09:32:29 +0000
commit4dd72bd89916535254a1eca2de1b24882c960e91 (patch)
tree3ed333981d4e33c00002c098a7fca4f747bf63de /tests/auto
parentf99d69ee4339b64fded7c4f81068082b8227ae71 (diff)
Compile fix
... after f99d69ee43 Change-Id: I711f8809dbdd7878b6c7fcc092f3391a2c4cebfe Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/qml/qmlprojectmanager/fileformat/tst_fileformat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/qmlprojectmanager/fileformat/tst_fileformat.cpp b/tests/auto/qml/qmlprojectmanager/fileformat/tst_fileformat.cpp
index bca2e8d7a8..d8ae7124d6 100644
--- a/tests/auto/qml/qmlprojectmanager/fileformat/tst_fileformat.cpp
+++ b/tests/auto/qml/qmlprojectmanager/fileformat/tst_fileformat.cpp
@@ -54,7 +54,7 @@ QString testDataDir = QLatin1String(SRCDIR "/data");
static QmlProjectItem *loadQmlProject(QString name, QString *error)
{
return QmlProjectFileFormat::parseProjectFile(
- Utils::FileName::fromString(testDataDir).appendPath(name).appendString(".qmlproject"), error);
+ Utils::FileName::fromString(testDataDir).appendPath(name + ".qmlproject"), error);
}
void tst_FileFormat::testFileFilter()