Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Jun 23, 2024
1 parent 331a6cc commit 0ec74b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viz-core/tests/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ async fn handler() -> Result<()> {
)
.catch_unwind(|_: Box<dyn std::any::Any + Send>| async move { panic!("Custom Error 2") });

let resp: Result<Response> = Handler::call(&aa, Request::new(Body::Empty)).await;
let resp: Result<Response> = Handler::<Request>::call(&aa, Request::new(Body::Empty)).await;
assert!(resp.is_ok());

let th = MyAround {
Expand Down

0 comments on commit 0ec74b3

Please sign in to comment.