mirror of
https://github.com/overte-org/overte.git
synced 2025-06-21 17:41:24 +02:00
Added missing semi-colons.
This commit is contained in:
parent
77d6ea6bec
commit
24738ebbe2
1 changed files with 3 additions and 3 deletions
|
@ -395,9 +395,9 @@ void Test::createRecursiveScript(const QString& topLevelDirectory, bool interact
|
||||||
const QString DATE_TIME_FORMAT("MMM d yyyy, h:mm");
|
const QString DATE_TIME_FORMAT("MMM d yyyy, h:mm");
|
||||||
textStream << "// This is an automatically generated file, created by auto-tester on " << QDateTime::currentDateTime().toString(DATE_TIME_FORMAT) << endl << endl;
|
textStream << "// This is an automatically generated file, created by auto-tester on " << QDateTime::currentDateTime().toString(DATE_TIME_FORMAT) << endl << endl;
|
||||||
|
|
||||||
textStream << "user = \"" + GIT_HUB_USER + "/\"" << endl;
|
textStream << "user = \"" + GIT_HUB_USER + "/;\"" << endl;
|
||||||
textStream << "repository = \"" + GIT_HUB_REPOSITORY + "/\"" << endl;
|
textStream << "repository = \"" + GIT_HUB_REPOSITORY + "/;\"" << endl;
|
||||||
textStream << "branch = \"" + GIT_HUB_BRANCH + "/\"" << endl << endl;
|
textStream << "branch = \"" + GIT_HUB_BRANCH + "/;\"" << endl << endl;
|
||||||
|
|
||||||
textStream << "var autoTester = Script.require(\"https://github.com/" + GIT_HUB_USER + "/hifi_tests/blob/"
|
textStream << "var autoTester = Script.require(\"https://github.com/" + GIT_HUB_USER + "/hifi_tests/blob/"
|
||||||
+ GIT_HUB_BRANCH + "/tests/utils/autoTester.js?raw=true\");" << endl << endl;
|
+ GIT_HUB_BRANCH + "/tests/utils/autoTester.js?raw=true\");" << endl << endl;
|
||||||
|
|
Loading…
Reference in a new issue