diff options
Diffstat (limited to 'contracts/protocol')
-rw-r--r-- | contracts/protocol/src/index.ts | 1 | ||||
-rw-r--r-- | contracts/protocol/test/exchange/order_validator.ts | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/contracts/protocol/src/index.ts b/contracts/protocol/src/index.ts index ba813e7ca..d55f08ea2 100644 --- a/contracts/protocol/src/index.ts +++ b/contracts/protocol/src/index.ts @@ -1,3 +1,2 @@ export * from './artifacts'; export * from './wrappers'; -export * from '../test/utils'; diff --git a/contracts/protocol/test/exchange/order_validator.ts b/contracts/protocol/test/exchange/order_validator.ts index 8f53426db..39b173fdd 100644 --- a/contracts/protocol/test/exchange/order_validator.ts +++ b/contracts/protocol/test/exchange/order_validator.ts @@ -18,14 +18,13 @@ import * as _ from 'lodash'; import { artifacts, ERC20ProxyContract, - ERC20Wrapper, ERC721ProxyContract, - ERC721Wrapper, ExchangeContract, - ExchangeWrapper, OrderValidatorContract, } from '../../src'; +import { ERC20Wrapper, ERC721Wrapper, ExchangeWrapper } from '../utils'; + chaiSetup.configure(); const expect = chai.expect; const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper); |