Skip to content

Commit

Permalink
Chore: imports in test (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
LondonCalamari authored Jun 13, 2023
1 parent 57c6117 commit f8c5380
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions test/risk-managers/unit-tests/PMRM/utils/PMRMTestBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import "forge-std/Test.sol";
import "src/risk-managers/PMRM.sol";
import "src/assets/CashAsset.sol";
import "src/SubAccounts.sol";
import "src/interfaces/IManager.sol";
import "src/interfaces/IAsset.sol";
import "src/interfaces/ISubAccounts.sol";
import {IManager} from "src/interfaces/IManager.sol";
import {IAsset} from "src/interfaces/IAsset.sol";
import {ISubAccounts} from "src/interfaces/ISubAccounts.sol";

import "test/shared/mocks/MockManager.sol";
import "test/shared/mocks/MockERC20.sol";
Expand Down
16 changes: 8 additions & 8 deletions test/shared/mocks/MockFeeds.sol
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.18;

import "src/interfaces/ISpotFeed.sol";
import "src/interfaces/IVolFeed.sol";
import "src/interfaces/IInterestRateFeed.sol";
import "src/interfaces/IForwardFeed.sol";
import "src/interfaces/ISettlementFeed.sol";

import "src/interfaces/IDataReceiver.sol";
import "src/interfaces/IAllowList.sol";
import {ISpotFeed} from "src/interfaces/ISpotFeed.sol";
import {IVolFeed} from "src/interfaces/IVolFeed.sol";
import {IInterestRateFeed} from "src/interfaces/IInterestRateFeed.sol";
import {IForwardFeed} from "src/interfaces/IForwardFeed.sol";
import {ISettlementFeed} from "src/interfaces/ISettlementFeed.sol";

import {IDataReceiver} from "src/interfaces/IDataReceiver.sol";
import {IAllowList} from "src/interfaces/IAllowList.sol";

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

0 comments on commit f8c5380

Please sign in to comment.