Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanBrouwer committed Nov 5, 2023
1 parent 24fe3b4 commit e26ce1f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bencher/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,10 @@ struct Args {

fn main() {
let args = Args::parse();
assert!(args.read || args.write, "Should compare results or write new ones.");
assert!(
args.read || args.write,
"Should compare results or write new ones."
);

let mongo_pw =
env::var("MONGO_PW").expect("No environment variable was set to connect to the database.");
Expand Down

0 comments on commit e26ce1f

Please sign in to comment.