From 24cbeada2be4935bd16361db655086c4a6982c9e Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Mon, 6 Oct 2025 21:35:59 -0400 Subject: [PATCH] remove unwrap --- crates/zeta2/src/zeta2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zeta2/src/zeta2.rs b/crates/zeta2/src/zeta2.rs index d32b2589135e2d77f9285706254d1e3c05f7f3e2..97b838f4a909831f86e883eb4d47cf961697928b 100644 --- a/crates/zeta2/src/zeta2.rs +++ b/crates/zeta2/src/zeta2.rs @@ -1350,7 +1350,7 @@ mod tests { let (res_tx, res_rx) = oneshot::channel(); req_tx.unbounded_send((req, res_tx)).unwrap(); - serde_json::to_string(&res_rx.await.unwrap()).unwrap() + serde_json::to_string(&res_rx.await?).unwrap() } _ => { panic!("Unexpected path: {}", uri)