Fix protocol fees tests

This commit is contained in:
Amir Bandeali
2019-09-29 15:45:58 -07:00
parent 98106ca8a2
commit a5692690dc
2 changed files with 0 additions and 4 deletions

View File

@@ -28,7 +28,6 @@ blockchainTests('Protocol Fees unit tests', env => {
let exchangeAddress: string;
let notExchangeAddress: string;
let testContract: TestProtocolFeesContract;
let wethAssetData: string;
let minimumStake: BigNumber;
before(async () => {
@@ -46,7 +45,6 @@ blockchainTests('Protocol Fees unit tests', env => {
exchangeAddress,
);
wethAssetData = await testContract.getWethAssetData.callAsync();
minimumStake = (await testContract.getParams.callAsync())[2];
});
@@ -230,7 +228,6 @@ blockchainTests('Protocol Fees unit tests', env => {
);
expect(logsArgs.length).to.eq(1);
for (const args of logsArgs) {
expect(args.assetData).to.eq(wethAssetData);
expect(args.from).to.eq(fromAddress);
expect(args.to).to.eq(testContract.address);
expect(args.amount).to.bignumber.eq(amount);

View File

@@ -243,7 +243,6 @@ export async function deployAndConfigureContractsAsync(
env.txDefaults,
artifacts,
wethContract.address,
erc20ProxyContract.address,
zrxVaultContract.address,
);