diff --git a/test/UniStaker.integration.t.sol b/test/UniStaker.integration.t.sol index cdde33b..d9e19f3 100644 --- a/test/UniStaker.integration.t.sol +++ b/test/UniStaker.integration.t.sol @@ -1,14 +1,13 @@ // SPDX-License-Identifier: AGPL-3.0-only pragma solidity 0.8.23; -import {Vm, Test, console2} from "forge-std/Test.sol"; +import {Test, console2} from "forge-std/Test.sol"; import {Deploy} from "script/Deploy.s.sol"; import {DeployInput} from "script/DeployInput.sol"; import {V3FactoryOwner} from "src/V3FactoryOwner.sol"; import {UniStaker} from "src/UniStaker.sol"; import {ProposalTest} from "test/helpers/ProposalTest.sol"; -import {IUniswapV3PoolOwnerActions} from "src/interfaces/IUniswapV3PoolOwnerActions.sol"; import {IUniswapV3FactoryOwnerActions} from "src/interfaces/IUniswapV3FactoryOwnerActions.sol"; import {IUniswapPool} from "test/helpers/interfaces/IUniswapPool.sol"; diff --git a/test/helpers/ProposalTest.sol b/test/helpers/ProposalTest.sol index b5808a6..c4dfac6 100644 --- a/test/helpers/ProposalTest.sol +++ b/test/helpers/ProposalTest.sol @@ -1,8 +1,6 @@ // SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.23; -import {IERC20} from "@openzeppelin/contracts/interfaces/IERC20.sol"; -import {IGovernor} from "@openzeppelin/contracts/governance/IGovernor.sol"; import {Test} from "forge-std/Test.sol"; import {Deploy} from "script/Deploy.s.sol";