Apply clang-format

This commit is contained in:
Martchus 2019-05-04 20:58:23 +02:00
parent a17f322f3c
commit 151a3ae9e5
4 changed files with 7 additions and 7 deletions

View File

@ -261,9 +261,9 @@ string TestApplication::testFilePath(const string &relativeTestFilePath) const
// file still not found -> return default path
if (!fileExists(path = "./testfiles/" + relativeTestFilePath)) {
throw runtime_error("The testfile \"" % relativeTestFilePath % "\" can not be located. Was looking under: \""
% m_testFilesPath % relativeTestFilePath % "\", \"" % m_fallbackTestFilesPath % relativeTestFilePath
% "\" and \"./testfiles/" % relativeTestFilePath + "\"");
throw runtime_error("The testfile \"" % relativeTestFilePath % "\" can not be located. Was looking under: \"" % m_testFilesPath
% relativeTestFilePath % "\", \"" % m_fallbackTestFilesPath % relativeTestFilePath % "\" and \"./testfiles/" % relativeTestFilePath
+ "\"");
}
return path;
}