Updated ERC20 v1 proxy names in tests

This commit is contained in:
Greg Hysen
2018-04-11 15:17:08 -07:00
committed by Amir Bandeali
parent be8e8791b7
commit 4e093369f6
5 changed files with 10 additions and 10 deletions

View File

@@ -100,7 +100,7 @@ describe('Exchange', () => {
provider,
);
// Deploy ERC20 V1 Proxy
const erc20TransferProxyV1Instance = await deployer.deployAsync(ContractName.ERC20Proxy_V1, [
const erc20TransferProxyV1Instance = await deployer.deployAsync(ContractName.ERC20V1Proxy, [
tokenTransferProxy.address,
]);
erc20TransferProxyV1 = new ERC20Proxy_v1Contract(
@@ -115,7 +115,7 @@ describe('Exchange', () => {
from: accounts[0],
});
await assetProxyDispatcher.addAssetProxy.sendTransactionAsync(
AssetProxyId.ERC20_V1,
AssetProxyId.ERC20V1,
erc20TransferProxyV1.address,
ZeroEx.NULL_ADDRESS,
{ from: accounts[0] },