aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/test/asset_proxy
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2018-05-08 02:20:53 +0800
committerAmir Bandeali <abandeali1@gmail.com>2018-05-08 02:20:53 +0800
commit7e7364fc83167677594f246b418fe939b1b02f2a (patch)
tree84c3f55589320ac7ef9a4698ac9e0b52a767d337 /packages/contracts/test/asset_proxy
parent395d06042707892bcb74cb7a0e2897c628e5c903 (diff)
downloaddexon-sol-tools-7e7364fc83167677594f246b418fe939b1b02f2a.tar
dexon-sol-tools-7e7364fc83167677594f246b418fe939b1b02f2a.tar.gz
dexon-sol-tools-7e7364fc83167677594f246b418fe939b1b02f2a.tar.bz2
dexon-sol-tools-7e7364fc83167677594f246b418fe939b1b02f2a.tar.lz
dexon-sol-tools-7e7364fc83167677594f246b418fe939b1b02f2a.tar.xz
dexon-sol-tools-7e7364fc83167677594f246b418fe939b1b02f2a.tar.zst
dexon-sol-tools-7e7364fc83167677594f246b418fe939b1b02f2a.zip
Move Authorizable to AssetProxy dir, rename to MixinAuthorizable
Diffstat (limited to 'packages/contracts/test/asset_proxy')
-rw-r--r--packages/contracts/test/asset_proxy/authorizable.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/contracts/test/asset_proxy/authorizable.ts b/packages/contracts/test/asset_proxy/authorizable.ts
index cc4f78a31..9cea263e7 100644
--- a/packages/contracts/test/asset_proxy/authorizable.ts
+++ b/packages/contracts/test/asset_proxy/authorizable.ts
@@ -3,7 +3,7 @@ import { Web3Wrapper } from '@0xproject/web3-wrapper';
import * as chai from 'chai';
import * as Web3 from 'web3';
-import { AuthorizableContract } from '../../src/contract_wrappers/generated/authorizable';
+import { MixinAuthorizableContract } from '../../src/contract_wrappers/generated/mixin_authorizable';
import { constants } from '../../src/utils/constants';
import { ContractName } from '../../src/utils/types';
import { chaiSetup } from '../utils/chai_setup';
@@ -18,13 +18,13 @@ describe('Authorizable', () => {
let owner: string;
let notOwner: string;
let address: string;
- let authorizable: AuthorizableContract;
+ let authorizable: MixinAuthorizableContract;
before(async () => {
const accounts = await web3Wrapper.getAvailableAddressesAsync();
owner = address = accounts[0];
notOwner = accounts[1];
const authorizableInstance = await deployer.deployAsync(ContractName.Authorizable);
- authorizable = new AuthorizableContract(authorizableInstance.abi, authorizableInstance.address, provider);
+ authorizable = new MixinAuthorizableContract(authorizableInstance.abi, authorizableInstance.address, provider);
});
beforeEach(async () => {
await blockchainLifecycle.startAsync();