Skip to content

Commit

Permalink
Add missing 'return'
Browse files Browse the repository at this point in the history
  • Loading branch information
guspiel committed Jan 2, 2025
1 parent c12fe6b commit 0c58cfb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ts/shielder-sdk-tests/tests/shielder/stateSync.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ sdkTest("sync after withdraw w/ client", async ({ workerPage }) => {
) {
throw Error("Account state did not sync after withdrawal");
}

return true;
},
{ chainConfig, relayerConfig, privateKeyAlice },
);
Expand Down Expand Up @@ -135,6 +137,8 @@ sdkTest("sync after withdraw w/o client", async ({ workerPage }) => {
if (stateAfterWithdraw.balance != depositAmount - withdrawAmount) {
throw Error("Account state did not sync after withdraw");
}

return true;
},
{ chainConfig, relayerConfig, privateKeyAlice },
);
Expand Down

0 comments on commit 0c58cfb

Please sign in to comment.