JANITORIAL: Update all scummvm.org URLS to use https

This commit is contained in:
Cameron Cawley 2019-03-09 19:26:59 +00:00 committed by Lothar Serra Mari
parent 1630cf0e6c
commit 09dbe7686b
64 changed files with 183 additions and 183 deletions

View file

@ -169,12 +169,12 @@ TestExitStatus MiscTests::testOpenUrl() {
return kTestSkipped;
}
if (!g_system->openUrl("http://scummvm.org/")) {
if (!g_system->openUrl("https://scummvm.org/")) {
Testsuite::logPrintf("Info! openUrl() says it couldn't open the url (probably not supported on this platform)\n");
return kTestFailed;
}
if (Testsuite::handleInteractiveInput("Was ScummVM able to open 'http://scummvm.org/' in your default browser?", "Yes", "No", kOptionRight)) {
if (Testsuite::handleInteractiveInput("Was ScummVM able to open 'https://scummvm.org/' in your default browser?", "Yes", "No", kOptionRight)) {
Testsuite::logDetailedPrintf("Error! openUrl() is not working!\n");
return kTestFailed;
}