cargo fmt

This commit is contained in:
Martin Algesten
2018-06-22 10:16:37 +02:00
parent 5f975270bf
commit 0a828bb4a5
12 changed files with 37 additions and 38 deletions

View File

@@ -7,8 +7,7 @@ fn no_query_string() {
test::set_handler("/no_query_string", |_req, _url| {
test::make_response(200, "OK", vec![], vec![])
});
let resp = get("test://host/no_query_string")
.call();
let resp = get("test://host/no_query_string").call();
let vec = resp.to_write_vec();
let s = String::from_utf8_lossy(&vec);
assert!(s.contains("GET /no_query_string HTTP/1.1"))