Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
CraZySacX committed Feb 13, 2021
1 parent 55dc81e commit 04aa8ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/gen.rs
Expand Up @@ -160,7 +160,9 @@ mod test {

let mut stdout_buf = vec![];
let mut stderr = vec![];
assert!(gen_cargo_instructions(flags, Some(repo_path), &mut stdout_buf, &mut stderr).is_ok());
assert!(
gen_cargo_instructions(flags, Some(repo_path), &mut stdout_buf, &mut stderr).is_ok()
);
let stdout = String::from_utf8_lossy(&stdout_buf);
assert!(!VBD_REGEX.is_match(&stdout));
Ok(())
Expand Down

0 comments on commit 04aa8ab

Please sign in to comment.