Skip to content

Commit 0702e57

Browse files
committed
Chore: Fix formatting
1 parent add8f4d commit 0702e57

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

test/unit/modules/fundingManager/bondingCurve/formulas/DiscreteCurveMathLib_v1.t.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4535,7 +4535,9 @@ contract DiscreteCurveMathLib_v1_Test is Test {
45354535
uint supplyPerStepTpl,
45364536
uint numberOfStepsTpl
45374537
) public view {
4538-
numSegmentsToFuzz = uint8(bound(numSegmentsToFuzz, 1, DiscreteCurveMathLib_v1.MAX_SEGMENTS));
4538+
numSegmentsToFuzz = uint8(
4539+
bound(numSegmentsToFuzz, 1, DiscreteCurveMathLib_v1.MAX_SEGMENTS)
4540+
);
45394541

45404542
vm.assume(initialPriceTpl <= INITIAL_PRICE_MASK);
45414543
vm.assume(priceIncreaseTpl <= PRICE_INCREASE_MASK);

0 commit comments

Comments
 (0)