Skip to content

Commit 94b7cc3

Browse files
committed
fix: test
1 parent 81eef06 commit 94b7cc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/contract-helpers/src/commons/gasStation.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe('gasStation', () => {
4242
const gas = await estimateGasByNetwork(tx, provider, 10);
4343
expect(gas).toEqual(BigNumber.from(110));
4444
});
45-
it('Expects to return 230000 for zksync when connected with contract address', async () => {
45+
it('Expects to return 350000 for zksync when connected with contract address', async () => {
4646
jest
4747
.spyOn(provider, 'getNetwork')
4848
.mockImplementationOnce(async () =>
@@ -54,7 +54,7 @@ describe('gasStation', () => {
5454
.mockImplementationOnce(async () => Promise.resolve('0x1234'));
5555

5656
const gas = await estimateGasByNetwork({ from: '0x123abc' }, provider);
57-
expect(gas).toEqual(BigNumber.from(230000));
57+
expect(gas).toEqual(BigNumber.from(350000));
5858
});
5959
it('Expects to return default for zksync when connected with EOA', async () => {
6060
jest

0 commit comments

Comments
 (0)