Skip to content

Commit

Permalink
Update integration test for zksync
Browse files Browse the repository at this point in the history
  • Loading branch information
wshino committed Sep 10, 2024
1 parent 4727741 commit 2191baa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/contracts/test/IntegrationZKSync.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ contract IntegrationZKSyncTest is Test {
string memory publicInputFile = vm.readFile(
string.concat(
vm.projectRoot(),
"/test/build_integration/email_auth_public.json"
"/test/build_integration/email_auth_with_body_parsing_with_qp_encoding_public.json"
)
);
string[] memory pubSignals = abi.decode(
Expand Down Expand Up @@ -251,7 +251,7 @@ contract IntegrationZKSyncTest is Test {
publicInputFile = vm.readFile(
string.concat(
vm.projectRoot(),
"/test/build_integration/email_auth_public.json"
"/test/build_integration/email_auth_with_body_parsing_with_qp_encoding_proof.json"
)
);
pubSignals = abi.decode(vm.parseJson(publicInputFile), (string[]));
Expand All @@ -275,7 +275,7 @@ contract IntegrationZKSyncTest is Test {
emailProof.proof = proofToBytes(
string.concat(
vm.projectRoot(),
"/test/build_integration/email_auth_proof.json"
"/test/build_integration/email_auth_with_body_parsing_with_qp_encoding_proof.json"
)
);

Expand Down

0 comments on commit 2191baa

Please sign in to comment.