We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9a0dbf commit d7fee85Copy full SHA for d7fee85
ic-agent/src/agent/agent_test.rs
@@ -43,11 +43,10 @@ fn make_certifying_agent(url: &str) -> Agent {
43
}
44
45
#[cfg_attr(not(target_family = "wasm"), tokio::test)]
46
-#[cfg_attr(target_family = "wasm", wasm_bindgen_test)]
47
async fn refuse_to_install_mainnet_root_key() -> Result<(), AgentError> {
48
let url = "https://icp0.io";
49
50
- let agent = make_agent(&url);
+ let agent = make_agent(url);
51
let result = agent.fetch_root_key().await;
52
assert!(matches!(
53
result,
0 commit comments