Merge pull request #35 from actix/master

Merge pull request actix#1416
This commit is contained in:
Zhang Zhongyu 2020-03-13 08:46:09 +08:00 committed by GitHub
commit 18653e0e4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ where
/// .to_request();
///
/// let resp = test::call_service(&mut app, req).await;
/// let result = test::read_body(resp);
/// let result = test::read_body(resp).await;
/// assert_eq!(result, Bytes::from_static(b"welcome!"));
/// }
/// ```