diff options
author | Greg Hysen <greg.hysen@gmail.com> | 2018-04-13 08:55:06 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2018-04-21 04:56:17 +0800 |
commit | 4e48de111600412c6344bc5c4df42e4d17807e97 (patch) | |
tree | aa6dde3f7a4c287c158f0965300a861bae20cf26 /packages/contracts/test | |
parent | b3b29f527e3e3e435b5fe97dd7eb4a42f0fa182c (diff) | |
download | dexon-sol-tools-4e48de111600412c6344bc5c4df42e4d17807e97.tar dexon-sol-tools-4e48de111600412c6344bc5c4df42e4d17807e97.tar.gz dexon-sol-tools-4e48de111600412c6344bc5c4df42e4d17807e97.tar.bz2 dexon-sol-tools-4e48de111600412c6344bc5c4df42e4d17807e97.tar.lz dexon-sol-tools-4e48de111600412c6344bc5c4df42e4d17807e97.tar.xz dexon-sol-tools-4e48de111600412c6344bc5c4df42e4d17807e97.tar.zst dexon-sol-tools-4e48de111600412c6344bc5c4df42e4d17807e97.zip |
Minor changes to typescript tests
Diffstat (limited to 'packages/contracts/test')
-rw-r--r-- | packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts b/packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts index f466670a8..8f430ee94 100644 --- a/packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts +++ b/packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts @@ -183,7 +183,7 @@ describe('AssetProxyDispatcher', () => { expect(proxyAddress).to.be.equal(newAddress); }); - it('should throw if registering with incorrect "old_address" field', async () => { + it('should throw if registering with incorrect "currentAssetProxyAddress" field', async () => { // Initial registration await assetProxyDispatcher.addAssetProxy.sendTransactionAsync( AssetProxyId.ERC20, @@ -225,7 +225,7 @@ describe('AssetProxyDispatcher', () => { expect(newProxyAddress).to.be.equal(ZeroEx.NULL_ADDRESS); }); - it('should throw if requesting address is not authorized', async () => { + it('should throw if requesting address is not owner', async () => { return expect( assetProxyDispatcher.addAssetProxy.sendTransactionAsync( AssetProxyId.ERC20, @@ -286,7 +286,7 @@ describe('AssetProxyDispatcher', () => { ); }); - it('should throw if delegating to unregistered proxy', async () => { + it('should throw if dispatching to unregistered proxy', async () => { // Construct metadata for ERC20 proxy const encodedProxyMetadata = encodeERC20ProxyData(zrx.address); // Perform a transfer from makerAddress to takerAddress @@ -298,7 +298,7 @@ describe('AssetProxyDispatcher', () => { makerAddress, takerAddress, amount, - { from: notOwner }, + { from: exchangeAddress }, ), ).to.be.rejectedWith(constants.REVERT); }); |