Skip to content

Commit

Permalink
batch conv tests delete proxy global variables
Browse files Browse the repository at this point in the history
  • Loading branch information
olivier7delf committed Sep 2, 2022
1 parent fc1c6d2 commit bc407d0
Showing 1 changed file with 2 additions and 6 deletions.
Expand Up @@ -6,8 +6,6 @@ import {
EthereumFeeProxy__factory,
ChainlinkConversionPath,
TestERC20,
Erc20ConversionProxy,
EthConversionProxy,
TestERC20__factory,
BatchConversionPayments__factory,
BatchConversionPayments,
Expand Down Expand Up @@ -56,8 +54,6 @@ describe('contract: BatchConversionPayments', async () => {
let DAI_address: string;
let FAU_address: string;

let erc20ConversionProxy: Erc20ConversionProxy;
let ethConversionProxy: EthConversionProxy;
let batchConversionProxy: BatchConversionPayments;
let daiERC20: TestERC20;
let fauERC20: TestERC20;
Expand Down Expand Up @@ -306,12 +302,12 @@ describe('contract: BatchConversionPayments', async () => {

const erc20FeeProxy = await new ERC20FeeProxy__factory(adminSigner).deploy();
const ethFeeProxy = await new EthereumFeeProxy__factory(adminSigner).deploy();
erc20ConversionProxy = await new Erc20ConversionProxy__factory(adminSigner).deploy(
const erc20ConversionProxy = await new Erc20ConversionProxy__factory(adminSigner).deploy(
erc20FeeProxy.address,
chainlinkPath.address,
await adminSigner.getAddress(),
);
ethConversionProxy = await new EthConversionProxy__factory(adminSigner).deploy(
const ethConversionProxy = await new EthConversionProxy__factory(adminSigner).deploy(
ethFeeProxy.address,
chainlinkPath.address,
ETH_hash,
Expand Down

0 comments on commit bc407d0

Please sign in to comment.