aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts
diff options
context:
space:
mode:
authorGreg Hysen <greg.hysen@gmail.com>2018-04-14 06:28:14 +0800
committerAmir Bandeali <abandeali1@gmail.com>2018-04-21 04:56:18 +0800
commit167654c9a0403a11dcccde7e93d8baed52c17786 (patch)
tree7a2648b5c6c9851a582937b8eb0fc8e70b3d88cb /packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts
parent6d6179fb2ca02a822165abccbcd3585f49ef2187 (diff)
downloaddexon-sol-tools-167654c9a0403a11dcccde7e93d8baed52c17786.tar
dexon-sol-tools-167654c9a0403a11dcccde7e93d8baed52c17786.tar.gz
dexon-sol-tools-167654c9a0403a11dcccde7e93d8baed52c17786.tar.bz2
dexon-sol-tools-167654c9a0403a11dcccde7e93d8baed52c17786.tar.lz
dexon-sol-tools-167654c9a0403a11dcccde7e93d8baed52c17786.tar.xz
dexon-sol-tools-167654c9a0403a11dcccde7e93d8baed52c17786.tar.zst
dexon-sol-tools-167654c9a0403a11dcccde7e93d8baed52c17786.zip
Added clarity to not-authorized test case in dispatcher
Diffstat (limited to 'packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts')
-rw-r--r--packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts b/packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts
index 04de86865..606965743 100644
--- a/packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts
+++ b/packages/contracts/test/asset_proxy_dispatcher/dispatcher.ts
@@ -27,6 +27,7 @@ const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper);
describe('AssetProxyDispatcher', () => {
let owner: string;
let notOwner: string;
+ let notAuthorized: string;
let exchangeAddress: string;
let tokenOwner: string;
let makerAddress: string;
@@ -44,7 +45,7 @@ describe('AssetProxyDispatcher', () => {
// Setup accounts & addresses
const accounts = await web3Wrapper.getAvailableAddressesAsync();
owner = tokenOwner = accounts[0];
- notOwner = accounts[1];
+ notOwner = notAuthorized = accounts[1];
exchangeAddress = accounts[2];
makerAddress = accounts[3];
takerAddress = accounts[4];
@@ -303,7 +304,7 @@ describe('AssetProxyDispatcher', () => {
).to.be.rejectedWith(constants.REVERT);
});
- it('should throw if requesting address is not authorized', async () => {
+ it('should throw on transfer if requesting address is not authorized', async () => {
// Register ERC20 proxy
await assetProxyDispatcher.addAssetProxy.sendTransactionAsync(
AssetProxyId.ERC20,
@@ -322,7 +323,7 @@ describe('AssetProxyDispatcher', () => {
makerAddress,
takerAddress,
amount,
- { from: notOwner },
+ { from: notAuthorized },
),
).to.be.rejectedWith(constants.REVERT);
});