delete useless effectful test

This commit is contained in:
Aiden McClelland
2025-11-07 02:33:17 -07:00
parent a7bce7cfcc
commit d6a84e41e6

View File

@@ -370,15 +370,3 @@ impl CallRemote<InstallContext> 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();
});
}