Skip to content

Commit

Permalink
fix(fmt): format solidity files
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubilmax committed Nov 24, 2023
1 parent 83ad378 commit 9fa6f19
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/forge/AdaptiveCurveIrmTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ contract AdaptiveCurveIrmTest is Test {
MarketParams internal marketParams = MarketParams(address(0), address(0), address(0), address(0), 0);

function setUp() public {
irm =
new AdaptiveCurveIrm(address(this), CURVE_STEEPNESS, ADJUSTMENT_SPEED, TARGET_UTILIZATION, INITIAL_RATE_AT_TARGET);
irm = new AdaptiveCurveIrm(
address(this), CURVE_STEEPNESS, ADJUSTMENT_SPEED, TARGET_UTILIZATION, INITIAL_RATE_AT_TARGET
);
vm.warp(90 days);

bytes4[] memory selectors = new bytes4[](1);
Expand Down Expand Up @@ -187,8 +188,9 @@ contract AdaptiveCurveIrmTest is Test {
function testRateAfter3WeeksUtilizationTargetPingEveryMinute() public {
int256 initialRateAtTarget = int256(1 ether) / 365 days; // 100%

irm =
new AdaptiveCurveIrm(address(this), CURVE_STEEPNESS, ADJUSTMENT_SPEED, TARGET_UTILIZATION, initialRateAtTarget);
irm = new AdaptiveCurveIrm(
address(this), CURVE_STEEPNESS, ADJUSTMENT_SPEED, TARGET_UTILIZATION, initialRateAtTarget
);

Market memory market;
market.totalSupplyAssets = 1 ether;
Expand Down

0 comments on commit 9fa6f19

Please sign in to comment.