Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lambda-0x committed Jan 19, 2024
1 parent 22bf634 commit 8454b92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/sozo/src/commands/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ mod tests {
fn build_example() {
let config = build_test_config("../../examples/spawn-and-move/Scarb.toml").unwrap();

let result = BuildArgs.run(&config);
let build_args = BuildArgs;
let result = build_args.run(&config);
assert!(result.is_ok());
}
}

0 comments on commit 8454b92

Please sign in to comment.