Commit 68e840c2 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #8030 from ethereum-optimism/ctb/deployer-list-simplify

contracts-bedrock: simplify test
parents 1d4afbff 80bbf242
...@@ -2,16 +2,16 @@ ...@@ -2,16 +2,16 @@
pragma solidity 0.8.15; pragma solidity 0.8.15;
// Testing utilities // Testing utilities
import { CommonTest } from "test/CommonTest.t.sol"; import { Test } from "forge-std/Test.sol";
// Target contract // Target contract
import { DeployerWhitelist } from "src/legacy/DeployerWhitelist.sol"; import { DeployerWhitelist } from "src/legacy/DeployerWhitelist.sol";
contract DeployerWhitelist_Test is CommonTest { contract DeployerWhitelist_Test is Test {
DeployerWhitelist list; DeployerWhitelist list;
/// @dev Sets up the test suite. /// @dev Sets up the test suite.
function setUp() public virtual override { function setUp() public {
list = new DeployerWhitelist(); list = new DeployerWhitelist();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment