Skip to content

Commit bbee490

Browse files
committed
Fix invariant tests
1 parent 2d6c0dd commit bbee490

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/sharing-smart-contract/test/invariant/handlers/HandlerGlobal.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {GhostStorage} from "./GhostStorage.sol";
1313
contract HandlerGlobal is Test, GhostStorage {
1414
// ---------------------State Variables------------------------------------
1515
// TODO remove hardcoded values to make tests compatible with any chain.
16-
IPoCo public constant POCO_DELEGATE = IPoCo(0x3eca1B216A7DF1C7689aEb259fFB83ADFB894E7f);
16+
IPoCo public constant POCO_DELEGATE = 0x3eca1B216A7DF1C7689aEb259fFB83ADFB894E7f;
1717
IRegistry public constant POCO_PROTECTED_DATA_REGISTRY =
1818
IRegistry(0x799DAa22654128d0C64d5b79eac9283008158730);
1919
IDataProtector public constant DATA_PROTECTOR_CORE =
@@ -26,7 +26,7 @@ contract HandlerGlobal is Test, GhostStorage {
2626
constructor() {
2727
address admin = address(54321);
2828
vm.label(admin, "admin");
29-
vm.label(address(POCO_DELEGATE), "pocoDelegate");
29+
vm.label(POCO_DELEGATE, "pocoDelegate");
3030
vm.label(address(POCO_PROTECTED_DATA_REGISTRY), "protectedDataRegistry");
3131

3232
AddOnlyAppWhitelistRegistry appWhitelistImpl = new AddOnlyAppWhitelistRegistry();

0 commit comments

Comments
 (0)