Skip to content

Commit bba172f

Browse files
authored
test: remove debug code from rpc_tests (#100)
1 parent f9f4925 commit bba172f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/agent-client-protocol/src/rpc_tests.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ impl Client for TestClient {
110110
}
111111

112112
async fn ext_method(&self, args: ExtRequest) -> Result<ExtResponse> {
113-
match dbg!(args.method.as_ref()) {
113+
match args.method.as_ref() {
114114
"example.com/ping" => Ok(ExtResponse::new(raw_json!({
115115
"response": "pong",
116116
"params": args.params
@@ -296,8 +296,7 @@ impl Agent for TestAgent {
296296
}
297297

298298
async fn ext_method(&self, args: ExtRequest) -> Result<ExtResponse> {
299-
dbg!();
300-
match dbg!(args.method.as_ref()) {
299+
match args.method.as_ref() {
301300
"example.com/echo" => {
302301
let response = serde_json::json!({
303302
"echo": args.params

0 commit comments

Comments
 (0)