Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
louismerlin committed Nov 20, 2023
1 parent 2879a37 commit 7b7e21f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion tests/arbitrary_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,13 @@ fn integration() {
thread::sleep(Duration::from_secs(10));
kill_subprocesses_recursively(&format!("{}", fuzzer.id()));

process::Command::new("cat").arg(format!("{}/arbitrary-fuzz/logs/afl.log", temp_dir_path.display())).spawn().unwrap();
process::Command::new("cat")
.arg(format!(
"{}/arbitrary-fuzz/logs/afl.log",
temp_dir_path.display()
))
.spawn()
.unwrap();

assert!(temp_dir_path
.join("arbitrary-fuzz")
Expand Down

0 comments on commit 7b7e21f

Please sign in to comment.