Commit 9c8afd4b authored by Mark Tyneway's avatar Mark Tyneway

lint: fix

parent bf51c493
...@@ -180,7 +180,7 @@ L2StandardBridge_Bridge_Test:test_finalizeDeposit_depositingETH_succeeds() (gas: ...@@ -180,7 +180,7 @@ L2StandardBridge_Bridge_Test:test_finalizeDeposit_depositingETH_succeeds() (gas:
L2StandardBridge_FinalizeBridgeETH_Test:test_finalizeBridgeETH_succeeds() (gas: 43155) L2StandardBridge_FinalizeBridgeETH_Test:test_finalizeBridgeETH_succeeds() (gas: 43155)
L2StandardBridge_Test:test_initialize_succeeds() (gas: 24247) L2StandardBridge_Test:test_initialize_succeeds() (gas: 24247)
L2StandardBridge_Test:test_receive_succeeds() (gas: 173990) L2StandardBridge_Test:test_receive_succeeds() (gas: 173990)
L2StandardBridge_Test:test_withdraw_ether_success() (gas: 140478) L2StandardBridge_Test:test_withdraw_ether_succeeds() (gas: 140500)
L2StandardBridge_Test:test_withdraw_insufficientValue_reverts() (gas: 16463) L2StandardBridge_Test:test_withdraw_insufficientValue_reverts() (gas: 16463)
L2ToL1MessagePasserTest:test_burn_succeeds() (gas: 112572) L2ToL1MessagePasserTest:test_burn_succeeds() (gas: 112572)
L2ToL1MessagePasserTest:test_initiateWithdrawal_fromContract_succeeds() (gas: 70423) L2ToL1MessagePasserTest:test_initiateWithdrawal_fromContract_succeeds() (gas: 70423)
......
...@@ -123,7 +123,7 @@ contract L2StandardBridge_Test is Bridge_Initializer { ...@@ -123,7 +123,7 @@ contract L2StandardBridge_Test is Bridge_Initializer {
* @notice Use the legacy `withdraw` interface on the L2StandardBridge to * @notice Use the legacy `withdraw` interface on the L2StandardBridge to
* withdraw ether from L2 to L1. * withdraw ether from L2 to L1.
*/ */
function test_withdraw_ether_success() external { function test_withdraw_ether_succeeds() external {
assertTrue(alice.balance >= 100); assertTrue(alice.balance >= 100);
assertEq(Predeploys.L2_TO_L1_MESSAGE_PASSER.balance, 0); assertEq(Predeploys.L2_TO_L1_MESSAGE_PASSER.balance, 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment