From 5ae42b29b60cfe6fe82aaeee10b447c5adc451a4 Mon Sep 17 00:00:00 2001 From: "clandestine.eth" <96172957+0xClandestine@users.noreply.github.com> Date: Tue, 25 Feb 2025 19:32:46 -0500 Subject: [PATCH] fix: ci passing --- ...posit_Delegate_Allocate_Slash_Queue_Redeposit.t.sol | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/test/integration/tests/Deposit_Delegate_Allocate_Slash_Queue_Redeposit.t.sol b/src/test/integration/tests/Deposit_Delegate_Allocate_Slash_Queue_Redeposit.t.sol index 5893f4e30..075b8faa0 100644 --- a/src/test/integration/tests/Deposit_Delegate_Allocate_Slash_Queue_Redeposit.t.sol +++ b/src/test/integration/tests/Deposit_Delegate_Allocate_Slash_Queue_Redeposit.t.sol @@ -241,16 +241,6 @@ contract Integration_Deposit_Delegate_Allocate_Slash_Queue_Redeposit is Integrat newMagnitudes: new uint64[](allocateParams.strategies.length) })); - // Check that the operator has deallocated - for (uint i = 0; i < allocateParams.strategies.length; i++) { - (uint64 currentMagnitude, ) = allocationManager.getAllocation( - address(operator), - operatorSet.id, - allocateParams.strategies[i] - ); - assertEq(currentMagnitude, 0, "operator should have zero allocation after deallocating"); - } - // Partially slash operator SlashingParams memory slashParams = _genSlashing_Half(operator, operatorSet); avs.slashOperator(slashParams);