Skip to content

Commit

Permalink
Merge pull request #55 from symbioticfi/test-fix
Browse files Browse the repository at this point in the history
Update tests after merge
  • Loading branch information
1kresh authored Oct 8, 2024
2 parents 8bb87ad + 75c961d commit 5996d26
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/delegator/OperatorSpecificDelegator.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,10 @@ contract OperatorSpecificDelegatorTest is Test {
operatorMetadataService = new MetadataService(address(operatorRegistry));
networkMetadataService = new MetadataService(address(networkRegistry));
networkMiddlewareService = new NetworkMiddlewareService(address(networkRegistry));
operatorVaultOptInService = new OptInService(address(operatorRegistry), address(vaultFactory));
operatorNetworkOptInService = new OptInService(address(operatorRegistry), address(networkRegistry));
operatorVaultOptInService =
new OptInService(address(operatorRegistry), address(vaultFactory), "OperatorVaultOptInService");
operatorNetworkOptInService =
new OptInService(address(operatorRegistry), address(networkRegistry), "OperatorNetworkOptInService");

address vaultImpl =
address(new Vault(address(delegatorFactory), address(slasherFactory), address(vaultFactory)));
Expand Down

0 comments on commit 5996d26

Please sign in to comment.