mirror of
https://github.com/lens-protocol/core.git
synced 2026-04-22 03:02:03 -04:00
test: Fix MultistateHubTest with signer
This commit is contained in:
@@ -68,7 +68,7 @@ Scenarios
|
||||
[X] User should create a profile, governance should pause the hub, transferring the profile should fail
|
||||
[X] Governance should pause the hub, profile creation should fail, then governance unpauses the hub and profile creation should work
|
||||
[X] Governance should pause the hub, setting follow module should fail, then governance unpauses the hub and setting follow module should work
|
||||
[ ] Governance should pause the hub, setting follow module with sig should fail, then governance unpauses the hub and setting follow module with sig should work
|
||||
[X] Governance should pause the hub, setting follow module with sig should fail, then governance unpauses the hub and setting follow module with sig should work
|
||||
[ ] Governance should pause the hub, setting dispatcher should fail, then governance unpauses the hub and setting dispatcher should work
|
||||
[ ] Governance should pause the hub, setting dispatcher with sig should fail, then governance unpauses the hub and setting dispatcher with sig should work
|
||||
[ ] Governance should pause the hub, setting profile URI should fail, then governance unpauses the hub and setting profile URI should work
|
||||
|
||||
@@ -117,7 +117,7 @@ contract MultiStateHubTest_PausedState_Direct is BaseTest {
|
||||
}
|
||||
|
||||
function _mockSetFollowModule() internal virtual {
|
||||
return _setFollowModule(profileOwner, firstProfileId, address(0), '');
|
||||
_setFollowModule(profileOwner, firstProfileId, address(0), '');
|
||||
}
|
||||
|
||||
// Negatives
|
||||
@@ -170,7 +170,7 @@ contract MultiStateHubTest_PausedState_WithSig is MultiStateHubTest_PausedState_
|
||||
return
|
||||
_setFollowModuleWithSig(
|
||||
DataTypes.SetFollowModuleWithSigData({
|
||||
delegatedSigner: profileOwner,
|
||||
delegatedSigner: address(0),
|
||||
profileId: firstProfileId,
|
||||
followModule: address(0),
|
||||
followModuleInitData: '',
|
||||
|
||||
Reference in New Issue
Block a user