Skip to content

Commit 3ea315f

Browse files
committed
Fixed compile warnings
1 parent b8e7286 commit 3ea315f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/VaultBooster.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ contract VaultBoosterTest is Test {
7272
booster = new VaultBooster(prizePool, vault, address(this));
7373
}
7474

75-
function testConstructor() public {
75+
function testConstructor() public view {
7676
assertEq(address(booster.prizePool()), address(prizePool));
7777
assertEq(booster.vault(), vault);
7878
assertEq(address(booster.twabController()), address(twabController));
@@ -432,7 +432,7 @@ contract VaultBoosterTest is Test {
432432
booster.verifyTokensIn(address(prizeToken), 1000e18, abi.encode(boostToken));
433433
}
434434

435-
function testTargetOf() public {
435+
function testTargetOf() public view {
436436
assertEq(booster.targetOf(address(prizeToken)), address(prizePool));
437437
}
438438

0 commit comments

Comments
 (0)