Skip to content

Commit 98f7994

Browse files
committed
Fixed lint issues
1 parent c08ac50 commit 98f7994

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contracts/utils/math/Math.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,4 +428,4 @@ library Math {
428428
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
429429
return uint8(rounding) % 2 == 1;
430430
}
431-
}
431+
}

test/utils/math/Math.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ contract MathTest is Test {
195195
expected = _mulmod(expected, b, m);
196196
}
197197

198-
assertEq(result, expected);
198+
assertEq(result, expected);
199199
}
200200
}
201201

0 commit comments

Comments
 (0)