Skip to content

Commit 9e3257a

Browse files
committed
chore: move GPv2AllowListAuthenticationV2 into UpgradeAuthenticator.t.sol
1 parent d150443 commit 9e3257a

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

test/e2e/UpgradeAuthenticator.t.sol

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ pragma solidity ^0.8;
33

44
import {GPv2AllowListAuthentication} from "src/contracts/GPv2AllowListAuthentication.sol";
55

6-
import {GPv2AllowListAuthenticationV2} from "../src/GPv2AllowListAuthenticationV2.sol";
76
import {Helper} from "./Helper.sol";
87

98
interface IEIP173Proxy {
@@ -12,6 +11,12 @@ interface IEIP173Proxy {
1211
function owner() external view returns (address);
1312
}
1413

14+
contract GPv2AllowListAuthenticationV2 is GPv2AllowListAuthentication {
15+
function newMethod() external pure returns (uint256) {
16+
return 1337;
17+
}
18+
}
19+
1520
contract UpgradeAuthenticatorTest is Helper(false) {
1621
GPv2AllowListAuthenticationV2 v2Impl;
1722

test/src/GPv2AllowListAuthenticationV2.sol

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)