Skip to content

Commit

Permalink
71: fixing test
Browse files Browse the repository at this point in the history
  • Loading branch information
jac18281828 committed Jul 7, 2023
1 parent 50afc0b commit 396c1ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/governance/GovernanceBuilder.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ contract GovernanceBuilderTest is Test {
}

function testWithMinimumVoteDuration(uint testVoteDuration) public {
vm.assume(testVoteDuration >= Constant.MINIMUM_VOTE_DURATION && testVoteDuration < Constant.MAXIMUM_VOTE_DURATION);
vm.assume(testVoteDuration >= Constant.MINIMUM_VOTE_DURATION && testVoteDuration < Constant.MAXIMUM_VOTE_DURATION - 1);
address _communityLocation = _communityBuilder
.aCommunity()
.asPoolCommunity()
Expand Down

0 comments on commit 396c1ff

Please sign in to comment.