File tree Expand file tree Collapse file tree
solidity/test/authorization Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,6 +42,10 @@ contract AuthorizationStandardTest is Test {
4242 bytes forwardCall;
4343
4444 function setUp () public {
45+ // Set initial block timestamp and height
46+ vm.warp (5000 );
47+ vm.roll (100 );
48+
4549 vm.startPrank (owner);
4650
4751 // Deploy main contracts
@@ -586,7 +590,7 @@ contract AuthorizationStandardTest is Test {
586590 /**
587591 * @notice Test that failed execution returns proper callback with failure result
588592 */
589- function testSendProcessorMessageWithFailedExecution () public {
593+ function testSendProcessorMessageWithFailedExecutionNoFunds () public {
590594 // Create authorization for forward function on forwarder
591595 string [] memory forwardLabels = new string [](1 );
592596 forwardLabels[0 ] = "forward " ;
@@ -632,7 +636,7 @@ contract AuthorizationStandardTest is Test {
632636 /**
633637 * @notice Test that execution with revert and returns proper callback
634638 */
635- function testSendProcessorMessageThatReverts () public {
639+ function testSendProcessorMessageNonExistentFunction () public {
636640 // Create authorization for a function that will revert
637641 string [] memory revertLabels = new string [](1 );
638642 revertLabels[0 ] = "revertFunction " ;
You can’t perform that action at this time.
0 commit comments