Skip to content

Commit

Permalink
Update to trigger build
Browse files Browse the repository at this point in the history
  • Loading branch information
robotoer authored Aug 5, 2024
1 parent 9ff455c commit 2ef255c
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/test/utils/Setup.sol
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,15 @@ contract Setup is ExtendedTest, IEvents {
function setUpStrategy() public returns (address) {
// we save the strategy as a IStrategyInterface to give it the needed interface
IStrategyInterface _strategy = IStrategyInterface(
address(new Strategy(
address(asset),
"Tokenized Strategy",
address(mockYearnVault),
address(discountRateAdapter),
address(termVaultEventEmitter)
))
address(
new Strategy(
address(asset),
"Tokenized Strategy",
address(mockYearnVault),
address(discountRateAdapter),
address(termVaultEventEmitter)
)
)
);

vm.prank(adminWallet);
Expand Down

0 comments on commit 2ef255c

Please sign in to comment.