From d6a84e41e6b530e3c8fda28766db486db7150c70 Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Fri, 7 Nov 2025 02:33:17 -0700 Subject: [PATCH] delete useless effectful test --- core/startos/src/context/cli.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/core/startos/src/context/cli.rs b/core/startos/src/context/cli.rs index ffcb5d8c1..4234f9944 100644 --- a/core/startos/src/context/cli.rs +++ b/core/startos/src/context/cli.rs @@ -370,15 +370,3 @@ impl CallRemote for CliContext { .await } } - -#[test] -fn test() { - let ctx = CliContext::init(ClientConfig::default()).unwrap(); - ctx.runtime().unwrap().block_on(async { - reqwest::Client::new() - .get("http://example.com") - .send() - .await - .unwrap(); - }); -}