diff --git a/CHANGES.md b/CHANGES.md index 4acf464a..47264c7a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,8 +7,6 @@ * HttpResponse builder's methods `.body()`, `.finish()`, `.json()` return `HttpResponse` instead of `Result` -* Use more ergonomic `actix_web::Error` instead of `http::Error` for `HttpResponseBuilder::body()` - * Use more ergonomic `actix_web::Error` instead of `http::Error` for `ClientRequestBuilder::body()` * Router cannot parse Non-ASCII characters in URL #137 diff --git a/src/json.rs b/src/json.rs index eb61da1b..ee2c1b80 100644 --- a/src/json.rs +++ b/src/json.rs @@ -233,7 +233,7 @@ mod tests { use http::header; use futures::Async; - use with::with; + use with::With; use handler::Handler; impl PartialEq for JsonPayloadError { @@ -297,7 +297,7 @@ mod tests { #[test] fn test_with_json() { - let mut handler = with(|data: Json| data); + let mut handler = With::new(|data: Json| data); let req = HttpRequest::default(); let err = handler.handle(req).as_response().unwrap().error().is_some();