aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fuzzy-test
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@theqtcompany.com>2015-02-06 15:09:45 +0100
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-03-19 16:30:40 +0000
commitaea692f6ab9b22dabfeb8aadadc533ec9b95888b (patch)
treed8dede8d5152222b31388c2da7140b365ef56afa /tests/fuzzy-test
parentb2adf96ad714a87895ebc2c975dfd262c87f4eb6 (diff)
remove Qt4 work-arounds
QStringList::join supports QLatin1Char arguments in Qt5. Change-Id: Ic840473f0cb54c8c2a781bec3356c3c3c8e113af Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'tests/fuzzy-test')
-rw-r--r--tests/fuzzy-test/fuzzytester.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fuzzy-test/fuzzytester.cpp b/tests/fuzzy-test/fuzzytester.cpp
index 07fd8ffff..eb5fdb468 100644
--- a/tests/fuzzy-test/fuzzytester.cpp
+++ b/tests/fuzzy-test/fuzzytester.cpp
@@ -202,7 +202,7 @@ bool FuzzyTester::doCleanBuild(QString *errorMessage)
void FuzzyTester::throwIncrementalBuildError(const QString &message,
const QStringList &commitSequence)
{
- const QString commitSequenceString = commitSequence.join(QLatin1String(","));
+ const QString commitSequenceString = commitSequence.join(QLatin1Char(','));
throw TestError(QString::fromLocal8Bit("Found qbs bug with incremental build!\n"
"%1\n"
"The sequence of commits was: %2.").arg(message, commitSequenceString));