aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/net/http_loader.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/net/http_loader.rs b/tests/unit/net/http_loader.rs
index 7d805f27d24..f007522b433 100644
--- a/tests/unit/net/http_loader.rs
+++ b/tests/unit/net/http_loader.rs
@@ -199,7 +199,7 @@ impl AssertMustHaveBodyRequest {
impl HttpRequest for AssertMustHaveBodyRequest {
type R = MockResponse;
- fn headers_mut(&mut self) -> &mut Headers { &mut self.headers}
+ fn headers_mut(&mut self) -> &mut Headers { &mut self.headers }
fn send(self, body: &Option<Vec<u8>>) -> Result<MockResponse, LoadError> {
assert_eq!(self.expected_body, *body);