style: format

This commit is contained in:
Gonza Montiel 2026-03-19 12:38:48 +01:00
parent cee942e989
commit c8f29955c3

View file

@ -182,7 +182,9 @@ contract OperatorAddressMappingsTest is AVSDeployer {
solo1,
"forward mapping should be set before removal"
);
assertTrue(serviceManager.validatorsAllowlist(operator1), "operator should start allowlisted");
assertTrue(
serviceManager.validatorsAllowlist(operator1), "operator should start allowlisted"
);
assertTrue(
allocationManager.isMemberOfOperatorSet(
operator1,
@ -195,7 +197,8 @@ contract OperatorAddressMappingsTest is AVSDeployer {
serviceManager.removeValidatorFromAllowlist(operator1);
assertFalse(
serviceManager.validatorsAllowlist(operator1), "operator should be removed from allowlist"
serviceManager.validatorsAllowlist(operator1),
"operator should be removed from allowlist"
);
assertFalse(
allocationManager.isMemberOfOperatorSet(
@ -220,13 +223,16 @@ contract OperatorAddressMappingsTest is AVSDeployer {
vm.prank(avsOwner);
serviceManager.addValidatorToAllowlist(operator1);
assertTrue(serviceManager.validatorsAllowlist(operator1), "operator should start allowlisted");
assertTrue(
serviceManager.validatorsAllowlist(operator1), "operator should start allowlisted"
);
vm.prank(avsOwner);
serviceManager.removeValidatorFromAllowlist(operator1);
assertFalse(
serviceManager.validatorsAllowlist(operator1), "operator should be removed from allowlist"
serviceManager.validatorsAllowlist(operator1),
"operator should be removed from allowlist"
);
assertEq(
serviceManager.validatorEthAddressToSolochainAddress(operator1),