Skip to content

Commit

Permalink
Change a test to avoid compiler panic
Browse files Browse the repository at this point in the history
  • Loading branch information
Pasifaee committed May 24, 2024
1 parent 96b2988 commit 06d4361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethereum/circuits/lib/src/verifiers/account_test.nr
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ fn test_verify_account_wrong_address() {
#[test(should_fail)]
fn test_verify_account_wrong_state_proof() {
let mut wrong_proof = state_proof_input;
wrong_proof.proof.nodes[0][0] += 1;
wrong_proof.proof.nodes[0][0] -= 1;
let _ = verify_account(address, account, wrong_proof, state_root);
}

0 comments on commit 06d4361

Please sign in to comment.