Skip to content

Commit 48e2e3d

Browse files
committed
improve function names
1 parent 12dee5a commit 48e2e3d

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

solidity/test/authorization/AuthorizationStandard.t.sol

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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";

0 commit comments

Comments
 (0)