Skip to content

Commit ae1d70b

Browse files
committed
fix: gateways now unpaused on e2e
Signed-off-by: Tomás Migone <[email protected]>
1 parent 967e085 commit ae1d70b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ describe('[L1] L1GraphTokenGateway configuration', function () {
1414
unauthorized = (await graph.getTestAccounts())[0]
1515
})
1616

17-
it('bridge should be paused', async function () {
17+
it('bridge should not be paused', async function () {
1818
const paused = await L1GraphTokenGateway.paused()
19-
expect(paused).eq(true)
19+
expect(paused).eq(false)
2020
})
2121

2222
it('should be controlled by Controller', async function () {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ describe('[L2] L2GraphTokenGateway configuration', function () {
1414
unauthorized = (await graph.getTestAccounts())[0]
1515
})
1616

17-
it('bridge should be paused', async function () {
17+
it('bridge should not be paused', async function () {
1818
const paused = await L2GraphTokenGateway.paused()
19-
expect(paused).eq(true)
19+
expect(paused).eq(false)
2020
})
2121

2222
it('should be controlled by Controller', async function () {
@@ -77,7 +77,7 @@ describe('[L2] L2GraphTokenGateway configuration', function () {
7777
'0x00',
7878
)
7979

80-
await expect(tx).revertedWith('Paused (contract)')
80+
await expect(tx).revertedWith('ONLY_COUNTERPART_GATEWAY')
8181
})
8282
})
8383
})

0 commit comments

Comments
 (0)