From c8f29955c3076bc83ebb6aa7725b2d6999fdf1c6 Mon Sep 17 00:00:00 2001 From: Gonza Montiel Date: Thu, 19 Mar 2026 12:38:48 +0100 Subject: [PATCH] style: format --- contracts/test/OperatorAddressMappings.t.sol | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/contracts/test/OperatorAddressMappings.t.sol b/contracts/test/OperatorAddressMappings.t.sol index 29b7af87..70e8df34 100644 --- a/contracts/test/OperatorAddressMappings.t.sol +++ b/contracts/test/OperatorAddressMappings.t.sol @@ -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),