Skip to content

Commit

Permalink
chore: move GPv2AllowListAuthenticationV2 into UpgradeAuthenticator.t…
Browse files Browse the repository at this point in the history
….sol
  • Loading branch information
meetmangukiya authored and mfw78 committed Oct 7, 2024
1 parent d9770a0 commit c584092
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
7 changes: 6 additions & 1 deletion test/e2e/UpgradeAuthenticator.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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;

Expand Down
11 changes: 0 additions & 11 deletions test/src/GPv2AllowListAuthenticationV2.sol

This file was deleted.

0 comments on commit c584092

Please sign in to comment.