Module: wine Branch: master Commit: 1cd47755763cb2a17a8e48b3cb4f7c838be96aa2 URL: https://gitlab.winehq.org/wine/wine/-/commit/1cd47755763cb2a17a8e48b3cb4f7c8...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Dec 21 13:10:55 2022 +0100
urlmon/tests: Use gitlab.winehq.org host in can_do_https.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53680
---
dlls/urlmon/tests/url.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/urlmon/tests/url.c b/dlls/urlmon/tests/url.c index 9e1a6edcdfd..ef2a742b726 100644 --- a/dlls/urlmon/tests/url.c +++ b/dlls/urlmon/tests/url.c @@ -3977,11 +3977,11 @@ static BOOL can_do_https(void) ses = InternetOpenA("winetest", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0); ok(ses != NULL, "InternetOpen failed\n");
- con = InternetConnectA(ses, "test.winehq.org", INTERNET_DEFAULT_HTTPS_PORT, + con = InternetConnectA(ses, "gitlab.winehq.org", INTERNET_DEFAULT_HTTPS_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 0); ok(con != NULL, "InternetConnect failed\n");
- req = HttpOpenRequestA(con, "GET", "/tests/hello.html", NULL, NULL, NULL, + req = HttpOpenRequestA(con, "GET", "/robots.txt", NULL, NULL, NULL, INTERNET_FLAG_SECURE, 0); ok(req != NULL, "HttpOpenRequest failed\n");