Skip to content

Commit

Permalink
Fix founders rewards tests
Browse files Browse the repository at this point in the history
  • Loading branch information
neokry committed Mar 8, 2024
1 parent 9094316 commit 760380d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Auction.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ contract AuctionTest is NounsBuilderTest {

setMockTokenParams();

setAuctionParams(0.01 ether, 10 minutes, founder, 4_000);
setAuctionParams(0.01 ether, 10 minutes, founder, 6_000);

setMockGovParams();

Expand Down Expand Up @@ -690,7 +690,7 @@ contract AuctionTest is NounsBuilderTest {
assertEq(recipient, founder);
assertEq(percentBps, 500);

AuctionTypesV2.FounderReward memory newRewards = AuctionTypesV2.FounderReward({ recipient: founder2, percentBps: 4_000 });
AuctionTypesV2.FounderReward memory newRewards = AuctionTypesV2.FounderReward({ recipient: founder2, percentBps: 6_000 });

vm.prank(founder);
vm.expectRevert(abi.encodeWithSignature("INVALID_REWARDS_BPS()"));
Expand Down

0 comments on commit 760380d

Please sign in to comment.