Skip to content

Commit f8c5380

Browse files
Chore: imports in test (#249)
1 parent 57c6117 commit f8c5380

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

test/risk-managers/unit-tests/PMRM/utils/PMRMTestBase.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import "forge-std/Test.sol";
55
import "src/risk-managers/PMRM.sol";
66
import "src/assets/CashAsset.sol";
77
import "src/SubAccounts.sol";
8-
import "src/interfaces/IManager.sol";
9-
import "src/interfaces/IAsset.sol";
10-
import "src/interfaces/ISubAccounts.sol";
8+
import {IManager} from "src/interfaces/IManager.sol";
9+
import {IAsset} from "src/interfaces/IAsset.sol";
10+
import {ISubAccounts} from "src/interfaces/ISubAccounts.sol";
1111

1212
import "test/shared/mocks/MockManager.sol";
1313
import "test/shared/mocks/MockERC20.sol";

test/shared/mocks/MockFeeds.sol

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// SPDX-License-Identifier: UNLICENSED
22
pragma solidity ^0.8.18;
33

4-
import "src/interfaces/ISpotFeed.sol";
5-
import "src/interfaces/IVolFeed.sol";
6-
import "src/interfaces/IInterestRateFeed.sol";
7-
import "src/interfaces/IForwardFeed.sol";
8-
import "src/interfaces/ISettlementFeed.sol";
9-
10-
import "src/interfaces/IDataReceiver.sol";
11-
import "src/interfaces/IAllowList.sol";
4+
import {ISpotFeed} from "src/interfaces/ISpotFeed.sol";
5+
import {IVolFeed} from "src/interfaces/IVolFeed.sol";
6+
import {IInterestRateFeed} from "src/interfaces/IInterestRateFeed.sol";
7+
import {IForwardFeed} from "src/interfaces/IForwardFeed.sol";
8+
import {ISettlementFeed} from "src/interfaces/ISettlementFeed.sol";
9+
10+
import {IDataReceiver} from "src/interfaces/IDataReceiver.sol";
11+
import {IAllowList} from "src/interfaces/IAllowList.sol";
1212

1313
contract MockFeeds is ISpotFeed, IVolFeed, IForwardFeed, IInterestRateFeed, ISettlementFeed, IDataReceiver, IAllowList {
1414
uint public spot;

0 commit comments

Comments
 (0)