Corrected misplaced semicolons.

This commit is contained in:
NissimHadar 2018-05-25 15:03:45 -07:00
parent 00300f4b2f
commit dcab7e4e81
2 changed files with 5 additions and 5 deletions

View file

@ -395,9 +395,9 @@ void Test::createRecursiveScript(const QString& topLevelDirectory, bool interact
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 << "user = \"" + GIT_HUB_USER + "/;\"" << endl;
textStream << "repository = \"" + GIT_HUB_REPOSITORY + "/;\"" << endl;
textStream << "branch = \"" + GIT_HUB_BRANCH + "/;\"" << endl << endl;
textStream << "user = \"" + GIT_HUB_USER + "/\";" << endl;
textStream << "repository = \"" + GIT_HUB_REPOSITORY + "/\";" << endl;
textStream << "branch = \"" + GIT_HUB_BRANCH + "/\";" << endl << endl;
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;

View file

@ -102,9 +102,9 @@ private:
QStringList resultImagesFullFilenames;
// Used for accessing GitHub
const QString GIT_HUB_USER{ "highfidelity" };
const QString GIT_HUB_USER{ "NissimHadar" };
const QString GIT_HUB_REPOSITORY{ "hifi_tests" };
const QString GIT_HUB_BRANCH{ "master" };
const QString GIT_HUB_BRANCH{ "DailyTests" };
const QString DATETIME_FORMAT{ "yyyy-MM-dd_hh-mm-ss" };