From 75252382f29344d3161908bf28c5304b773f3235 Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Thu, 3 Oct 2024 16:25:32 -0400 Subject: [PATCH] style: forge fmt --- test/lib/NonLinearDutchDecayLib.t.sol | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/lib/NonLinearDutchDecayLib.t.sol b/test/lib/NonLinearDutchDecayLib.t.sol index 54248a20..8fa6c522 100644 --- a/test/lib/NonLinearDutchDecayLib.t.sol +++ b/test/lib/NonLinearDutchDecayLib.t.sol @@ -509,6 +509,10 @@ contract NonlinearDutchDecayLibTest is Test, GasSnapshot { vm.roll(currentBlock); uint256 decayed = NonlinearDutchDecayLib.decay(curve, startAmount, decayStartBlock, minAmount, maxAmount); - assertEq(decayed, Math.max(startAmount - decayAmountFuzz, minAmount), "Should be fully decayed for block delta beyond uint16.max"); + assertEq( + decayed, + Math.max(startAmount - decayAmountFuzz, minAmount), + "Should be fully decayed for block delta beyond uint16.max" + ); } }