From caa3674bbafe401a42e879e7eaa1ca0567a28f64 Mon Sep 17 00:00:00 2001 From: epi Date: Fri, 9 Oct 2020 12:32:53 -0500 Subject: [PATCH] fmt --- tests/test_scanner.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/test_scanner.rs b/tests/test_scanner.rs index 5809f59..cd10bdf 100644 --- a/tests/test_scanner.rs +++ b/tests/test_scanner.rs @@ -367,7 +367,8 @@ fn scanner_single_request_returns_301_without_location_header( /// send a single valid request, filter the size of the response, expect one out of 2 urls fn scanner_single_request_scan_with_filtered_result() -> Result<(), Box> { let srv = MockServer::start(); - let (tmp_dir, file) = setup_tmp_directory(&["LICENSE".to_string(), "ignored".to_string()], "wordlist")?; + let (tmp_dir, file) = + setup_tmp_directory(&["LICENSE".to_string(), "ignored".to_string()], "wordlist")?; let mock = Mock::new() .expect_method(GET) @@ -398,8 +399,10 @@ fn scanner_single_request_scan_with_filtered_result() -> Result<(), Box