Skip to content

Commit 9c06759

Browse files
authored
♻️ Fix test (#1415)
1 parent c19ac1f commit 9c06759

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/FixedPointMathLib.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,7 @@ contract FixedPointMathLibTest is SoladyTest {
12031203
if (mulmod(a, b, d) > 0) {
12041204
if (!(fullMulDivResult < type(uint256).max)) {
12051205
vm.expectRevert(FixedPointMathLib.FullMulDivFailed.selector);
1206-
FixedPointMathLib.fullMulDivUp(a, b, d);
1206+
this.fullMulDivUp(a, b, d);
12071207
return;
12081208
}
12091209
expectedResult++;

0 commit comments

Comments
 (0)