Skip to content

Commit

Permalink
fix: fix tests broken due to rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Zer0dot committed Aug 16, 2024
1 parent 683787b commit f99a60b
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions test/account/ReplaceModule.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,7 @@ contract UpgradeModuleTest is AccountTestBase {
});
account1.executeWithAuthorization(
abi.encodeCall(account1.executeBatch, (calls)),
_encodeSignature(
ModuleEntityLib.pack(address(singleSignerValidationModule), TEST_DEFAULT_VALIDATION_ENTITY_ID),
GLOBAL_VALIDATION,
""
)
_encodeSignature(_signerValidation, GLOBAL_VALIDATION, "")
);

// test installed, test if old module still installed
Expand Down Expand Up @@ -189,11 +185,7 @@ contract UpgradeModuleTest is AccountTestBase {
});
account1.executeWithAuthorization(
abi.encodeCall(account1.executeBatch, (calls)),
_encodeSignature(
ModuleEntityLib.pack(address(singleSignerValidationModule), TEST_DEFAULT_VALIDATION_ENTITY_ID),
GLOBAL_VALIDATION,
""
)
_encodeSignature(_signerValidation, GLOBAL_VALIDATION, "")
);

// Test if old validation still works, expect fail
Expand Down

0 comments on commit f99a60b

Please sign in to comment.