Skip to content

Commit

Permalink
make check
Browse files Browse the repository at this point in the history
  • Loading branch information
kenarab committed Jun 7, 2024
1 parent 16fd6e7 commit 5bc16e4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions crates/concrete_driver/tests/examples.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,13 @@ fn example_tests_with_args(
Err(e) => assert_eq!(not_consumed_xy_error.to_string(), e.to_string()),
}

let result_4 =
compile_and_run_with_args(source, name, is_library, OptLevel::Aggressive, &compile_args);
let result_4 = compile_and_run_with_args(
source,
name,
is_library,
OptLevel::Aggressive,
&compile_args,
);
match result_4 {
Ok(output) => assert_eq!(expected_status_code, output.status.code().unwrap()),
Err(e) => assert_eq!(not_consumed_xy_error.to_string(), e.to_string()),
Expand Down

0 comments on commit 5bc16e4

Please sign in to comment.