From 0ccfcd0795ca5e938414038c225cd2f73231535e Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Sun, 7 Jun 2026 13:36:37 +0300 Subject: [PATCH] fixed a single tests isssue --- tests/network/test_http_lifecycle.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/network/test_http_lifecycle.cpp b/tests/network/test_http_lifecycle.cpp index 96b8c2ec0..1ec626485 100644 --- a/tests/network/test_http_lifecycle.cpp +++ b/tests/network/test_http_lifecycle.cpp @@ -124,10 +124,10 @@ TEST_F(HttpLifecycle, FullLifecycleSurfacesNoInternetError) { ASSERT_GT(tmpl, 0); EXPECT_NE(tmpl, ctx); // different ID space - int conn = sceHttpCreateConnection(tmpl, "example.com", "http", 80, 0); + int conn = sceHttpCreateConnection(tmpl, "shadps4-test.invalid", "http", 80, 0); ASSERT_GT(conn, 0); - int req = sceHttpCreateRequestWithURL(conn, 0, "http://example.com/", 0); + int req = sceHttpCreateRequestWithURL(conn, 0, "http://shadps4-test.invalid/", 0); ASSERT_GT(req, 0); // Send dispatches a worker thread. Returns ORBIS_OK synchronously.