From d3eff318875ba2c91fb4c8b3916dd0294afc9a94 Mon Sep 17 00:00:00 2001 From: Sam MacPherson Date: Tue, 11 Jun 2024 16:28:47 +0900 Subject: [PATCH] remove incorrect comments --- test/AuthBridgeExecutor.t.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/AuthBridgeExecutor.t.sol b/test/AuthBridgeExecutor.t.sol index 3073823..715abf0 100644 --- a/test/AuthBridgeExecutor.t.sol +++ b/test/AuthBridgeExecutor.t.sol @@ -396,7 +396,6 @@ contract AuthBridgeExecutorExecuteTests is AuthBridgeExecutorTestBase { } function test_execute_delegateCallEmptyContract() public { - // Trigger some evm error like trying to call a non-payable function Action memory action = _getDefaultAction(); action.targets[0] = makeAddr("emptyContract"); _queueAction(action); @@ -432,7 +431,6 @@ contract AuthBridgeExecutorExecuteTests is AuthBridgeExecutorTestBase { } function test_execute_callEmptyContract() public { - // Trigger some evm error like trying to call a non-payable function Action memory action = _getDefaultAction(); action.targets[0] = makeAddr("emptyContract"); action.withDelegatecalls[0] = false;