Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.2.19 #137

Merged
merged 10 commits into from
Oct 31, 2024
Prev Previous commit
Next Next commit
Debugging failing test.
  • Loading branch information
Helios-vmg committed Oct 24, 2024
commit fe0ead551420007335d839471acf2d7bcb5e3372
5 changes: 4 additions & 1 deletion apps/cargo-scout-audit/tests/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,10 @@ mod tests {
let result = run_scout(scout_opts);

// Then
assert!(result.is_ok());
if result.is_err(){
dbg!(result.err());
assert!(false);
}
}
}
}
Loading