Skip to content

Commit

Permalink
Fix acir::solver unsatisfied_opcode_resolved_brillig test
Browse files Browse the repository at this point in the history
  • Loading branch information
anaPerezGhiglia committed Jun 26, 2024
1 parent 36a41ef commit 3cb7001
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions acvm-repo/acvm/tests/solver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -670,9 +670,9 @@ fn unsatisfied_opcode_resolved_brillig() {
let solver_status = acvm.solve();
assert_eq!(
solver_status,
ACVMStatus::Failure(OpcodeResolutionError::BrilligFunctionFailed {
payload: None,
call_stack: vec![OpcodeLocation::Brillig { acir_index: 0, brillig_index: 3 }]
ACVMStatus::Failure(OpcodeResolutionError::UnsatisfiedConstrain {
opcode_location: ErrorLocation::Resolved(OpcodeLocation::Acir(0)),
payload: None
}),
"The first opcode is not satisfiable, expected an error indicating this"
);
Expand Down

0 comments on commit 3cb7001

Please sign in to comment.