Skip to content

Commit

Permalink
update twab controller constructor params in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
trmid committed Jul 4, 2023
1 parent ef3cbf1 commit 9e5c298
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/fuzz/Vault.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ contract VaultFuzzTest is ERC4626Test, Helpers {

prizeToken = new ERC20Mock();

twabController = new TwabController();
twabController = new TwabController(1 days, uint32(block.timestamp));

prizePool = new PrizePoolMock(prizeToken);

Expand Down
2 changes: 1 addition & 1 deletion test/utils/UnitBaseSetup.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ contract UnitBaseSetup is Test, Helpers {
underlyingAsset = setUpUnderlyingAsset();
prizeToken = new ERC20PermitMock("PoolTogether");

twabController = new TwabController();
twabController = new TwabController(1 days, uint32(block.timestamp));

prizePool = new PrizePoolMock(prizeToken);

Expand Down

0 comments on commit 9e5c298

Please sign in to comment.