Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jakekidd committed Jul 8, 2024
1 parent 558d183 commit 3d07970
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: APACHE
pragma solidity ^0.8.0;

import {IERC20, ILendingPool, IQWChild, QWAaveV2} from '../../../src/contracts/child/QWAaveV2.sol';
import {IERC20, ILendingPool, IQWChild, QWAaveV2} from '../../../src/contracts/components/QWAaveV2.sol';
import {Test} from 'forge-std/Test.sol';

contract MockQWAaveV2 is QWAaveV2, Test {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: APACHE
pragma solidity ^0.8.0;

import {IERC20, IPool, IQWChild, QWAaveV3} from '../../../src/contracts/child/QWAaveV3.sol';
import {IERC20, IPool, IQWChild, QWAaveV3} from '../../../src/contracts/components/QWAaveV3.sol';
import {Test} from 'forge-std/Test.sol';

contract MockQWAaveV3 is QWAaveV3, Test {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: APACHE
pragma solidity ^0.8.0;

import {IComet, IERC20, IQWChild, QWCompound} from '../../../src/contracts/child/QWCompound.sol';
import {IComet, IERC20, IQWChild, QWCompound} from '../../../src/contracts/components/QWCompound.sol';
import {Test} from 'forge-std/Test.sol';

contract MockQWCompound is QWCompound, Test {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/QWManager.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {Test} from 'forge-std/Test.sol';
import {MockQWManager} from 'test/smock/MockQWManager.sol';
import {MockQWRegistry} from 'test/smock/MockQWRegistry.sol';
import {SmockHelper} from 'test/smock/SmockHelper.sol';
import {MockQWAaveV3} from 'test/smock/child/MockQWAaveV3.sol';
import {MockQWAaveV3} from 'test/smock/components/MockQWAaveV3.sol';

contract UnitQWManagerTest is Test, SmockHelper {
MockQWManager public mockQWManager;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/QWRegistry.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {MockQWManager} from 'test/smock/MockQWManager.sol';
import {MockQWRegistry} from 'test/smock/MockQWRegistry.sol';

import {SmockHelper} from 'test/smock/SmockHelper.sol';
import {MockQWAaveV3} from 'test/smock/child/MockQWAaveV3.sol';
import {MockQWAaveV3} from 'test/smock/components/MockQWAaveV3.sol';

contract UnitQWRegistryTest is Test, SmockHelper {
MockQWRegistry public mockQWRegistry;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity 0.8.23;

import {Test} from 'forge-std/Test.sol';
import {MockQWAaveV2} from 'test/smock/child/MockQWAaveV2.sol';
import {MockQWAaveV2} from 'test/smock/components/MockQWAaveV2.sol';

contract UnitQWAaveV3Test is Test {
MockQWAaveV2 public mockQWAaveV2;
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 3d07970

Please sign in to comment.