3
0
Fork 0
mirror of https://github.com/JulianGro/overte.git synced 2025-04-30 04:42:58 +02:00

Change parameter name from --no-login to --no-login-suggestion

This commit is contained in:
NissimHadar 2018-10-22 10:55:50 -07:00
parent 135114d877
commit 092f88e558
2 changed files with 2 additions and 2 deletions
interface/src
tools/auto-tester/src

View file

@ -2331,7 +2331,7 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer, bo
AndroidHelper::instance().notifyLoadComplete();
#else
// Do not show login dialog if requested not to on the command line
const QString HIFI_NO_LOGIN_COMMAND_LINE_KEY = "--no-login";
const QString HIFI_NO_LOGIN_COMMAND_LINE_KEY = "--no-login-suggestion";
int index = arguments().indexOf(HIFI_NO_LOGIN_COMMAND_LINE_KEY);
if (index == -1) {
// request not found

View file

@ -340,7 +340,7 @@ void TestRunner::runInterfaceWithTestScript() {
QString testScript =
QString("https://raw.githubusercontent.com/") + _user + "/hifi_tests/" + _branch + "/tests/testRecursive.js";
QString commandLine = exeFile + " --url " + url + " --no-updater --no-login" + " --testScript " + testScript +
QString commandLine = exeFile + " --url " + url + " --no-updater --no-login-suggestion" + " --testScript " + testScript +
" quitWhenFinished --testResultsLocation " + snapshotFolder;
interfaceWorker->setCommandLine(commandLine);