From 28c6b5f4b20ba998a6abaa7a172a23b54beff056 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Wed, 22 Jan 2020 06:56:15 +0900 Subject: [PATCH] Update `call_service` documentation --- src/test.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/test.rs b/src/test.rs index bb0d05cf7..956980530 100644 --- a/src/test.rs +++ b/src/test.rs @@ -95,11 +95,10 @@ where /// Calls service and waits for response future completion. /// /// ```rust -/// use actix_web::{test, App, HttpResponse, http::StatusCode}; -/// use actix_service::Service; +/// use actix_web::{test, web, App, HttpResponse, http::StatusCode}; /// -/// #[test] -/// fn test_response() { +/// #[actix_rt::test] +/// async fn test_response() { /// let mut app = test::init_service( /// App::new() /// .service(web::resource("/test").to(|| async {