Remove unnecessary lines

This commit is contained in:
Yuki Okushi 2019-08-16 11:41:19 +09:00
parent d47a8e0d06
commit cfa26b9243
3 changed files with 0 additions and 3 deletions

View File

@ -151,5 +151,4 @@ mod tests {
let res = block_on(normalize.call(req)).unwrap(); let res = block_on(normalize.call(req)).unwrap();
assert!(res.status().is_success()); assert!(res.status().is_success());
} }
} }

View File

@ -763,5 +763,4 @@ mod tests {
let resp = call_service(&mut srv, req); let resp = call_service(&mut srv, req);
assert_eq!(resp.status(), StatusCode::NO_CONTENT); assert_eq!(resp.status(), StatusCode::NO_CONTENT);
} }
} }

View File

@ -482,5 +482,4 @@ mod tests {
use crate::responder::tests::BodyTest; use crate::responder::tests::BodyTest;
assert_eq!(resp.body().bin_ref(), b"hello=world&counter=123"); assert_eq!(resp.body().bin_ref(), b"hello=world&counter=123");
} }
} }