From b582b0518db67bc31ca8b35fef13f93e29c9b70d Mon Sep 17 00:00:00 2001 From: woodenfurniture <125113430+woodenfurniture@users.noreply.github.com> Date: Thu, 11 Apr 2024 12:58:28 +1000 Subject: [PATCH] fix: nightly rugs --- foundry/test/FoxStakingTestUpgrades.t.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/foundry/test/FoxStakingTestUpgrades.t.sol b/foundry/test/FoxStakingTestUpgrades.t.sol index cd82333..8f41085 100644 --- a/foundry/test/FoxStakingTestUpgrades.t.sol +++ b/foundry/test/FoxStakingTestUpgrades.t.sol @@ -61,14 +61,14 @@ contract UpgradeHelper is Test { vm.startPrank(prankOwner); Upgrades.upgradeProxy( proxy, - "FOXStakingTestUpgrades.t.sol:MockFoxStakingV2", + "FoxStakingTestUpgrades.t.sol:MockFoxStakingV2", abi.encodeCall(MockFoxStakingV2.initialize, ()) ); vm.stopPrank; } } -contract FOXStakingTestUpgrades is Test { +contract FoxStakingTestUpgrades is Test { address public owner = address(0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045); address public foxStakingProxy; FoxStakingV1 public foxStakingV1;