diff --git a/src/agent-client-protocol/src/rpc_tests.rs b/src/agent-client-protocol/src/rpc_tests.rs index 14b9b5b..288f946 100644 --- a/src/agent-client-protocol/src/rpc_tests.rs +++ b/src/agent-client-protocol/src/rpc_tests.rs @@ -110,7 +110,7 @@ impl Client for TestClient { } async fn ext_method(&self, args: ExtRequest) -> Result { - match dbg!(args.method.as_ref()) { + match args.method.as_ref() { "example.com/ping" => Ok(ExtResponse::new(raw_json!({ "response": "pong", "params": args.params @@ -296,8 +296,7 @@ impl Agent for TestAgent { } async fn ext_method(&self, args: ExtRequest) -> Result { - dbg!(); - match dbg!(args.method.as_ref()) { + match args.method.as_ref() { "example.com/echo" => { let response = serde_json::json!({ "echo": args.params