From 64d59c6eca8b921e8b4cd8049541ee4a59208411 Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Fri, 8 Sep 2023 18:21:21 +0200 Subject: [PATCH] Change target for runtime::http::tests::verify_request --- src/runtime/http.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/http.rs b/src/runtime/http.rs index da33afc..bc013f9 100644 --- a/src/runtime/http.rs +++ b/src/runtime/http.rs @@ -97,7 +97,7 @@ mod tests { let script = Script::load_unchecked(r#" function run() session = http_mksession() - req = http_request(session, "GET", "https://httpbin.org/anything", {}) + req = http_request(session, "GET", "https://github.com", {}) x = http_send(req) if last_err() then return end print(x)