Skip to content

Commit

Permalink
Merge branch 'add-cairo1-running-example' into unpin-vm-for-cairo1-ru…
Browse files Browse the repository at this point in the history
…n-crate
  • Loading branch information
fmoletta committed Oct 9, 2023
2 parents be3238e + 90ec74b commit afb0b95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cairo1-run/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ mod tests {
#[case(["cairo1-run", "../cairo_programs/cairo-1-programs/fibonacci.cairo", "--trace_file", "/dev/null", "--memory_file", "/dev/null"].as_slice())]
fn test_run_fibonacci_ok(#[case] args: &[&str]) {
let args = args.iter().cloned().map(String::from);
assert_matches!(run(args), Ok(res) if res == vec![MaybeRelocatable::from(19)]);
assert_matches!(run(args), Ok(res) if res == vec![MaybeRelocatable::from(89)]);
}

#[rstest]
Expand Down

0 comments on commit afb0b95

Please sign in to comment.