Skip to content

Commit

Permalink
fix(tests): harmonize test names
Browse files Browse the repository at this point in the history
Co-authored-by: Merlin Egalite <[email protected]>
Signed-off-by: Julien THOMAS <[email protected]>
  • Loading branch information
julien-devatom and MerlinEgalite authored Nov 2, 2023
1 parent 66579b3 commit f723c1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/UniversalRewardsDistributorTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ contract UniversalRewardsDistributorTest is Test {
assertEq(distributionWithoutTimeLock.timelock(), newTimelock);
}

function testSetTimelockShouldRevertOnSameValue(uint256 newTimelock) public {
function testSetTimelockShouldRevertIfSameValue(uint256 newTimelock) public {
newTimelock = bound(newTimelock, 0, type(uint256).max);

vm.assume(newTimelock != distributionWithoutTimeLock.timelock());
Expand Down

0 comments on commit f723c1e

Please sign in to comment.