diff --git a/test/e2e/UpgradeAuthenticator.t.sol b/test/e2e/UpgradeAuthenticator.t.sol index 9c56a0a6..b1319696 100644 --- a/test/e2e/UpgradeAuthenticator.t.sol +++ b/test/e2e/UpgradeAuthenticator.t.sol @@ -3,7 +3,6 @@ pragma solidity ^0.8; import {GPv2AllowListAuthentication} from "src/contracts/GPv2AllowListAuthentication.sol"; -import {GPv2AllowListAuthenticationV2} from "../src/GPv2AllowListAuthenticationV2.sol"; import {Helper} from "./Helper.sol"; interface IEIP173Proxy { @@ -12,6 +11,12 @@ interface IEIP173Proxy { function owner() external view returns (address); } +contract GPv2AllowListAuthenticationV2 is GPv2AllowListAuthentication { + function newMethod() external pure returns (uint256) { + return 1337; + } +} + contract UpgradeAuthenticatorTest is Helper(false) { GPv2AllowListAuthenticationV2 v2Impl; diff --git a/test/src/GPv2AllowListAuthenticationV2.sol b/test/src/GPv2AllowListAuthenticationV2.sol deleted file mode 100644 index 40dc6ca2..00000000 --- a/test/src/GPv2AllowListAuthenticationV2.sol +++ /dev/null @@ -1,11 +0,0 @@ -// SPDX-License-Identifier: LGPL-3.0-or-later -// solhint-disable-next-line compiler-version -pragma solidity >=0.7.6 <0.9.0; - -import "src/contracts/GPv2AllowListAuthentication.sol"; - -contract GPv2AllowListAuthenticationV2 is GPv2AllowListAuthentication { - function newMethod() external pure returns (uint256) { - return 1337; - } -}