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(); - }); -}