Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
bulbozaur committed Nov 11, 2024
1 parent f1b4032 commit ce58033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/committees/TiebreakerSubCommittee.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ contract TiebreakerSubCommitteeUnitTest is UnitTest {
tiebreakerSubCommittee = new TiebreakerSubCommittee(owner, committeeMembers, quorum, tiebreakerCore);
}

function test_constructor_HappyPath(address _owner, uint256 _quorum, address _tiebreakerCore) external {
function testFuzz_constructor_HappyPath(address _owner, uint256 _quorum, address _tiebreakerCore) external {
vm.assume(_owner != address(0));
vm.assume(_quorum > 0 && _quorum <= committeeMembers.length);
new TiebreakerSubCommittee(_owner, committeeMembers, _quorum, _tiebreakerCore);
Expand Down

0 comments on commit ce58033

Please sign in to comment.