Skip to content

Commit

Permalink
fix: upgrade utils
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Nov 13, 2024
1 parent 7fe3a08 commit c2f6db7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/extensions/static-a-token/StataTokenV2Rescuable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ contract StataTokenV2RescuableTest is BaseTest {

function test_rescuable_shouldRevertForInvalidCaller() external {
deal(tokenList.usdx, address(stataTokenV2), 1 ether);
vm.expectRevert('ONLY_RESCUE_GUARDIAN');
vm.expectRevert(abi.encodeWithSelector(IRescuable.OnlyRescueGuardian.selector));
IRescuable(address(stataTokenV2)).emergencyTokenTransfer(
tokenList.usdx,
address(this),
Expand Down

0 comments on commit c2f6db7

Please sign in to comment.