Skip to content

Commit e58cf7e

Browse files
committed
fix: test
1 parent 8006668 commit e58cf7e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/test/integration/IntegrationDeployer.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ abstract contract IntegrationDeployer is ExistingDeploymentParser {
3838

3939
// Fork ids for specific fork tests
4040
bool isUpgraded;
41-
uint mainnetForkBlock = 23_634_615; // Post Pectra Compatibility Upgrade
41+
uint mainnetForkBlock = 23_634_615; // Post Redistribution Upgrade
4242

4343
string version = "9.9.9";
4444

src/test/integration/tests/upgrade/AllocationManagerUpgrade.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ contract Integration_Upgrade_AllocationManager is UpgradeTest {
5757
// 1. Create entities
5858
(staker, strategies, initTokenBalances) = _newRandomStaker();
5959
operator = _newRandomOperator_NoAssets();
60-
(avs,) = _newRandomAVS();
60+
(avs,) = _newRandomAVS_v1CreateSet();
6161

6262
operator.setAllocationDelay(ALLOCATION_CONFIGURATION_DELAY);
6363
rollForward({blocks: ALLOCATION_CONFIGURATION_DELAY + 1});
@@ -72,7 +72,7 @@ contract Integration_Upgrade_AllocationManager is UpgradeTest {
7272
check_Delegation_State(staker, operator, strategies, initDepositShares);
7373

7474
// 4. AVS creates an operator set containing the strategies held by the staker
75-
operatorSet = avs.createOperatorSet(strategies);
75+
operatorSet = avs.createOperatorSet_v1(strategies);
7676

7777
// 5. Operator registers for the operator set
7878
operator.registerForOperatorSet(operatorSet);

src/test/integration/tests/upgrade/ZeroRegistrationDelay.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ contract Integration_Upgrade_ZeroRegistrationDelay is UpgradeTest {
1313

1414
function _init() internal override {
1515
(, strategies,) = _newRandomStaker();
16-
(avs,) = _newRandomAVS();
17-
operatorSet = avs.createOperatorSet(strategies);
16+
(avs,) = _newRandomAVS_v1CreateSet();
17+
operatorSet = avs.createOperatorSet_v1(strategies);
1818
}
1919

2020
function testFuzz_register_upgrade_registerNew(uint24 r) public rand(r) {

0 commit comments

Comments
 (0)