Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-camuto committed Oct 5, 2023
1 parent 33165aa commit 1931a78
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ jobs:

prove-and-verify-evm-tests:
runs-on: ubuntu-latest-16-cores
needs: [build, library-tests, python-tests]
# needs: [build, library-tests, python-tests]
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
Expand Down
6 changes: 3 additions & 3 deletions tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1950,7 +1950,7 @@ mod native_tests {
let addr = std::fs::read_to_string(format!("{}/{}/addr.txt", test_dir, example_name))
.expect("failed to read address file");

let deployed_addr_arg = format!("--addr-verifier", addr);
let deployed_addr_arg = format!("--addr-verifier={}", addr);

let pf_arg = format!("{}/{}/evm_aggr.pf", test_dir, example_name);

Expand Down Expand Up @@ -2350,7 +2350,7 @@ mod native_tests {
let addr = std::fs::read_to_string(format!("{}/{}/addr.txt", test_dir, example_name))
.expect("failed to read address file");

let deployed_addr_arg = format!("--addr-verifier", addr);
let deployed_addr_arg = format!("--addr-verifier={}", addr);

// now verify the proof
let pf_arg = format!("{}/{}/proof.pf", test_dir, example_name);
Expand Down Expand Up @@ -2619,7 +2619,7 @@ mod native_tests {

assert!(status.success());

let deployed_addr_arg = format!("--addr-verifier", addr_da);
let deployed_addr_arg = format!("--addr-verifier={}", addr_da);

let mut args = vec![
"test-update-account-calls",
Expand Down

0 comments on commit 1931a78

Please sign in to comment.