removed todo/clippy

This commit is contained in:
epi
2021-01-27 07:38:00 -06:00
parent 1511be8d0e
commit eef8fa62a0
2 changed files with 1 additions and 3 deletions

View File

@@ -77,7 +77,7 @@ impl Handles {
let filters_handle = FiltersHandle::new(Arc::new(FeroxFilters::default()), tx.clone());
let handles = Self::new(stats_handle, filters_handle, terminal_handle);
if let Some(sh) = scanned_urls {
let scan_handle = ScanHandle::new(sh, tx.clone());
let scan_handle = ScanHandle::new(sh, tx);
handles.scan_handle(scan_handle);
}
(handles, rx)

View File

@@ -258,8 +258,6 @@ fn scanner_single_request_scan_with_invalid_file_output() -> Result<(), Box<dyn
.arg("-q")
.arg("-o")
.arg(outfile.as_os_str())
.arg("--debug-log")
.arg("redirects")
.unwrap();
let contents = std::fs::read_to_string(outfile);