Skip to content

Commit e3a668e

Browse files
committed
fix: update e2e tests to new error messages
Signed-off-by: Tomás Migone <[email protected]>
1 parent 27902cc commit e3a668e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

e2e/deployment/config/l1/l1GraphTokenGateway.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('[L1] L1GraphTokenGateway configuration', function () {
2626
describe('calls with unauthorized user', () => {
2727
it('initialize should revert', async function () {
2828
const tx = L1GraphTokenGateway.connect(unauthorized).initialize(unauthorized.address)
29-
await expect(tx).revertedWith('Caller must be the implementation')
29+
await expect(tx).revertedWith('Only implementation')
3030
})
3131

3232
it('setArbitrumAddresses should revert', async function () {

e2e/deployment/config/l2/l2GraphTokenGateway.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('[L2] L2GraphTokenGateway configuration', function () {
2626
describe('calls with unauthorized user', () => {
2727
it('initialize should revert', async function () {
2828
const tx = L2GraphTokenGateway.connect(unauthorized).initialize(unauthorized.address)
29-
await expect(tx).revertedWith('Caller must be the implementation')
29+
await expect(tx).revertedWith('Only implementation')
3030
})
3131

3232
it('setL2Router should revert', async function () {

0 commit comments

Comments
 (0)