diff --git a/test/MainTest.t.sol b/test/MainTest.t.sol index f467cf12..66c4bf1d 100644 --- a/test/MainTest.t.sol +++ b/test/MainTest.t.sol @@ -3,8 +3,6 @@ pragma solidity ^0.8.18; import {SafeTransferLib, ERC20} from "solmate/utils/SafeTransferLib.sol"; -import {IEscrow} from "../src/contracts/interfaces/IEscrow.sol"; -import {IAtlas} from "../src/contracts/interfaces/IAtlas.sol"; import {IDAppIntegration} from "../src/contracts/interfaces/IDAppIntegration.sol"; import {IExecutionEnvironment} from "../src/contracts/interfaces/IExecutionEnvironment.sol"; diff --git a/test/V2Helper.sol b/test/V2Helper.sol index 18345443..721738f1 100644 --- a/test/V2Helper.sol +++ b/test/V2Helper.sol @@ -22,8 +22,8 @@ contract V2Helper is Test, TestConstants, TxBuilder { uint256 public immutable maxFeePerGas; - constructor(address controller, address escrowAddress, address atlasAddress) - TxBuilder(controller, escrowAddress, atlasAddress) + constructor(address controller, address atlasAddress, address verification) + TxBuilder(controller, atlasAddress, verification) { maxFeePerGas = tx.gasprice * 2; } diff --git a/test/base/BaseTest.t.sol b/test/base/BaseTest.t.sol index 0cbaf668..62d7a45c 100644 --- a/test/base/BaseTest.t.sol +++ b/test/base/BaseTest.t.sol @@ -121,7 +121,7 @@ contract BaseTest is Test, TestConstants { deal(TOKEN_ZERO, address(solverTwo), 10e24); deal(TOKEN_ONE, address(solverTwo), 10e24); - helper = new V2Helper(address(control), escrow, address(atlas)); + helper = new V2Helper(address(control), address(atlas), address(atlasVerification)); deal(TOKEN_ZERO, address(atlas), 1); deal(TOKEN_ONE, address(atlas), 1);