Skip to content

Commit 935cb47

Browse files
committed
✅ test: use standard interface naming
1 parent 7e847fd commit 935cb47

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/DebtManager.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ contract DebtManagerTest is ForkTest {
378378

379379
function testFlashloanFeeGreaterThanZero() external {
380380
vm.prank(0xacAaC3e6D6Df918Bf3c809DFC7d42de0e4a72d4C);
381-
ProtocolFeesCollector(0xce88686553686DA562CE7Cea497CE749DA109f9F).setFlashLoanFeePercentage(1e15);
381+
IProtocolFeesCollector(0xce88686553686DA562CE7Cea497CE749DA109f9F).setFlashLoanFeePercentage(1e15);
382382

383383
vm.expectRevert("BAL#602");
384384
debtManager.leverage(marketUSDC, 100_000e6, 1.03e18);
@@ -1113,7 +1113,7 @@ enum Operation {
11131113
FixedToFixed
11141114
}
11151115

1116-
interface ProtocolFeesCollector {
1116+
interface IProtocolFeesCollector {
11171117
function setFlashLoanFeePercentage(uint256) external;
11181118
}
11191119

0 commit comments

Comments
 (0)