aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/contract_wrappers/exchange_wrapper.ts2
-rw-r--r--test/0x.js_test.ts4
-rw-r--r--test/contract_wrapper_test.ts4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts
index 38043dd55..f9585e991 100644
--- a/src/contract_wrappers/exchange_wrapper.ts
+++ b/src/contract_wrappers/exchange_wrapper.ts
@@ -3,7 +3,7 @@ import {Web3Wrapper} from '../web3_wrapper';
import {ECSignature, ZeroExError, ExchangeContract} from '../types';
import {assert} from '../utils/assert';
import {ContractWrapper} from './contract_wrapper';
-import * as ExchangeArtifacts from '../../artifacts/Exchange.json';
+import * as ExchangeArtifacts from '../artifacts/Exchange.json';
import {ECSignatureSchema} from '../schemas/ec_signature_schema';
export class ExchangeWrapper extends ContractWrapper {
diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts
index 9c61c3e10..5dbb781ab 100644
--- a/test/0x.js_test.ts
+++ b/test/0x.js_test.ts
@@ -3,8 +3,8 @@ import * as chai from 'chai';
import 'mocha';
import * as BigNumber from 'bignumber.js';
import ChaiBigNumber = require('chai-bignumber');
-import {ZeroEx} from '../src/ts/0x.js';
-import {constants} from '../src/ts/utils/constants';
+import {ZeroEx} from '../src/0x.js';
+import {constants} from '../src/utils/constants';
// Use BigNumber chai add-on
chai.use(ChaiBigNumber());
diff --git a/test/contract_wrapper_test.ts b/test/contract_wrapper_test.ts
index 67dae3a4e..4ff56ea3e 100644
--- a/test/contract_wrapper_test.ts
+++ b/test/contract_wrapper_test.ts
@@ -3,9 +3,9 @@ import * as chai from 'chai';
import chaiAsPromised = require('chai-as-promised');
import * as Web3 from 'web3';
import {web3Factory} from './utils/web3_factory';
-import {ExchangeWrapper} from '../src/ts/contract_wrappers/exchange_wrapper';
+import {ExchangeWrapper} from '../src/contract_wrappers/exchange_wrapper';
import {BlockchainLifecycle} from './utils/blockchain_lifecycle';
-import {Web3Wrapper} from './../src/ts/web3_wrapper';
+import {Web3Wrapper} from './../src/web3_wrapper';
const expect = chai.expect;
chai.use(chaiAsPromised);