diff --git a/tests/integration_tests/tests/complex_tower_middleware.rs b/tests/integration_tests/tests/complex_tower_middleware.rs index cf364d20b..5d7690be3 100644 --- a/tests/integration_tests/tests/complex_tower_middleware.rs +++ b/tests/integration_tests/tests/complex_tower_middleware.rs @@ -17,7 +17,7 @@ async fn complex_tower_layers_work() { #[tonic::async_trait] impl test_server::Test for Svc { async fn unary_call(&self, req: Request) -> Result, Status> { - todo!() + unimplemented!() } } @@ -36,7 +36,7 @@ struct MyServiceLayer {} impl MyServiceLayer { fn new() -> Self { - todo!() + unimplemented!() } } @@ -44,7 +44,7 @@ impl Layer for MyServiceLayer { type Service = MyService; fn layer(&self, inner: S) -> Self::Service { - todo!() + unimplemented!() } } @@ -62,11 +62,11 @@ where type Future = MyFuture; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { - todo!() + unimplemented!() } fn call(&mut self, req: R) -> Self::Future { - todo!() + unimplemented!() } } @@ -82,7 +82,7 @@ where type Output = Result>, BoxError>; fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll { - todo!() + unimplemented!() } } @@ -101,13 +101,13 @@ where self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { - todo!() + unimplemented!() } fn poll_trailers( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll, Self::Error>> { - todo!() + unimplemented!() } }