Skip to content

Commit

Permalink
fix: e2e_static_calls.test.ts bad merge (#5405)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludamad authored Mar 22, 2024
1 parent b6e7216 commit 4c56536
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/end-to-end/src/e2e_static_calls.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('e2e_static_calls', () => {
describe('parent calls child', () => {
it('performs legal private to private static calls', async () => {
// We create a note in the set, so...
await childContract.methods.privateSetValue(42n, wallet.getCompleteAddress().address).send().wait();
await childContract.methods.private_set_value(42n, wallet.getCompleteAddress().address).send().wait();
// ...this call doesn't fail due to get_notes returning 0 notes
await parentContract.methods
.private_static_call(childContract.address, childContract.methods.private_get_value.selector, [
Expand All @@ -36,7 +36,7 @@ describe('e2e_static_calls', () => {

it('performs legal (nested) private to private static calls', async () => {
// We create a note in the set, so...
await childContract.methods.privateSetValue(42n, wallet.getCompleteAddress().address).send().wait();
await childContract.methods.private_set_value(42n, wallet.getCompleteAddress().address).send().wait();
// ...this call doesn't fail due to get_notes returning 0 notes
await parentContract.methods
.private_nested_static_call(childContract.address, childContract.methods.private_get_value.selector, [
Expand Down

0 comments on commit 4c56536

Please sign in to comment.