Skip to content

Commit

Permalink
fix weth bridge tests
Browse files Browse the repository at this point in the history
  • Loading branch information
juan518munoz committed Feb 2, 2024
1 parent 0862a61 commit 37d8b56
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions l1-contracts/test/unit_tests/l1_weth_bridge_test.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ describe("WETH Bridge tests", () => {
priorityTxMaxGasLimit: 10000000,
initialProtocolVersion: 0,
feeParams: defaultFeeParams(),
},
},
]);

const facetCuts = [
Expand Down Expand Up @@ -126,6 +126,7 @@ describe("WETH Bridge tests", () => {
await owner.getAddress(),
ethers.constants.WeiPerEther,
ethers.constants.WeiPerEther,
0
]);
const _bridgeProxy = await (
await hardhat.ethers.getContractFactory("ERC1967Proxy")
Expand All @@ -144,7 +145,8 @@ describe("WETH Bridge tests", () => {
0,
0,
0,
ethers.constants.AddressZero
ethers.constants.AddressZero,
0
)
);

Expand All @@ -163,6 +165,7 @@ describe("WETH Bridge tests", () => {
1000000,
REQUIRED_L2_GAS_PRICE_PER_PUBDATA,
await randomSigner.getAddress(),
0,
{ value: ethers.constants.WeiPerEther }
);
});
Expand Down

0 comments on commit 37d8b56

Please sign in to comment.