Skip to content

Commit 20bfd95

Browse files
committed
refactor: forge fmt
1 parent 34c6709 commit 20bfd95

1 file changed

Lines changed: 14 additions & 4 deletions

File tree

test/tokenDistribution/vesting/VestingParams.t.sol

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,13 @@ contract VestingParamsTest is Test {
273273
// region - Get vesting constant -
274274

275275
function test_getVestingConstant_TEAM() external view {
276-
(uint256 totalAmount, uint256 numberOfPeriods, uint256 tgePortions, uint256 cliffPeriod, uint256 vestingPortion)
277-
= vestingParams.getVestingConstant(VestingType.TEAM);
276+
(
277+
uint256 totalAmount,
278+
uint256 numberOfPeriods,
279+
uint256 tgePortions,
280+
uint256 cliffPeriod,
281+
uint256 vestingPortion
282+
) = vestingParams.getVestingConstant(VestingType.TEAM);
278283

279284
assertEq(totalAmount, vestingParams.TEAM_TOTAL_AMOUNT());
280285
assertEq(numberOfPeriods, vestingParams.TEAM_NUMBER_OF_PERIODS());
@@ -284,8 +289,13 @@ contract VestingParamsTest is Test {
284289
}
285290

286291
function test_getVestingConstant_LIQUIDITY() external view {
287-
(uint256 totalAmount, uint256 numberOfPeriods, uint256 tgePortions, uint256 cliffPeriod, uint256 vestingPortion)
288-
= vestingParams.getVestingConstant(VestingType.LIQUIDITY);
292+
(
293+
uint256 totalAmount,
294+
uint256 numberOfPeriods,
295+
uint256 tgePortions,
296+
uint256 cliffPeriod,
297+
uint256 vestingPortion
298+
) = vestingParams.getVestingConstant(VestingType.LIQUIDITY);
289299

290300
assertEq(totalAmount, vestingParams.LIQUIDITY_TOTAL_AMOUNT());
291301
assertEq(numberOfPeriods, vestingParams.LIQUIDITY_NUMBER_OF_PERIODS());

0 commit comments

Comments
 (0)