Skip to content

Commit 1c3c831

Browse files
authored
chore: update strategy dependencies (#66)
1 parent f9c1b5a commit 1c3c831

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

foundry.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
}
1313
},
1414
"lib/tokenized-strategy": {
15-
"rev": "82806289f967590c4efbf6bc3d237e4e7f0a0966"
15+
"rev": "8c8929f1878e8c5ad78aa0a6dabc877a890f68d9"
1616
},
1717
"lib/tokenized-strategy-periphery": {
18-
"rev": "c0dfe4a563a45efb72718547e840429b3a6092e6"
18+
"rev": "96994fb98dc239379a048aef1302f9f698b3e48d"
1919
}
2020
}

lib/tokenized-strategy-periphery

src/test/FunctionSignature.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ contract FunctionSignatureTest is Setup {
2828
assertEq(strategy.totalSupply(), 0, "total supply");
2929
assertEq(strategy.unlockedShares(), 0, "unlocked shares");
3030
assertEq(strategy.asset(), address(asset), "asset");
31-
assertEq(strategy.apiVersion(), "3.0.4", "api");
31+
assertEq(strategy.apiVersion(), "3.1.0", "api");
3232
assertEq(strategy.MAX_FEE(), 5_000, "max fee");
3333
assertEq(strategy.fullProfitUnlockDate(), 0, "unlock date");
3434
assertEq(strategy.profitUnlockingRate(), 0, "unlock rate");
@@ -60,8 +60,8 @@ contract FunctionSignatureTest is Setup {
6060
vm.startPrank(strategy.management());
6161
vm.expectRevert("Cannot be self");
6262
strategy.setPerformanceFeeRecipient(address(strategy));
63-
vm.expectRevert("too long");
6463
strategy.setProfitMaxUnlockTime(type(uint256).max);
64+
assertEq(strategy.profitMaxUnlockTime(), type(uint256).max, "max unlock time");
6565
vm.stopPrank();
6666

6767
// Mint some shares to the user

0 commit comments

Comments
 (0)