test: Fix MultistateHubTest with signer

This commit is contained in:
vicnaum
2022-11-30 18:52:53 +01:00
parent 202ae9e7b7
commit a05aa2d941
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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: '',