Skip to content

Commit

Permalink
fix: Show output of test_program_is_idempotent on failure (#6942)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfecher authored Jan 3, 2025
1 parent 529bb16 commit a690d96
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tooling/nargo_cli/src/cli/compile_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,6 @@ mod tests {
use nargo::ops::compile_program;
use nargo_toml::PackageSelection;
use noirc_driver::{CompileOptions, CrateName};
use rayon::prelude::*;

use crate::cli::compile_cmd::{get_target_width, parse_workspace, read_workspace};

Expand Down Expand Up @@ -402,7 +401,7 @@ mod tests {

assert!(!test_workspaces.is_empty(), "should find some test workspaces");

test_workspaces.par_iter().for_each(|workspace| {
test_workspaces.iter().for_each(|workspace| {
let (file_manager, parsed_files) = parse_workspace(workspace);
let binary_packages = workspace.into_iter().filter(|package| package.is_binary());

Expand Down

0 comments on commit a690d96

Please sign in to comment.