aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-06-30 02:25:58 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-06-30 02:25:58 +0800
commit83bc740911b522078481382bc1657e127994e8fa (patch)
tree64a96c6793b5d3dcc0ca256e402c63282924379f /test
parentbc92968c5eb5714380b217f2a530f1c86130cae7 (diff)
downloaddexon-sol-tools-83bc740911b522078481382bc1657e127994e8fa.tar
dexon-sol-tools-83bc740911b522078481382bc1657e127994e8fa.tar.gz
dexon-sol-tools-83bc740911b522078481382bc1657e127994e8fa.tar.bz2
dexon-sol-tools-83bc740911b522078481382bc1657e127994e8fa.tar.lz
dexon-sol-tools-83bc740911b522078481382bc1657e127994e8fa.tar.xz
dexon-sol-tools-83bc740911b522078481382bc1657e127994e8fa.tar.zst
dexon-sol-tools-83bc740911b522078481382bc1657e127994e8fa.zip
Make it clear that we are using a fake address in tests
Diffstat (limited to 'test')
-rw-r--r--test/0x.js_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts
index 7e350c8f4..50db402c4 100644
--- a/test/0x.js_test.ts
+++ b/test/0x.js_test.ts
@@ -132,14 +132,14 @@ describe('ZeroEx library', () => {
});
describe('#getOrderHashHex', () => {
const expectedOrderHash = '0x39da987067a3c9e5f1617694f1301326ba8c8b0498ebef5df4863bed394e3c83';
- const exchangeContractAddress = '0xb69e673309512a9d726f87304c6984054f87a93b';
+ const fakeExchangeContractAddress = '0xb69e673309512a9d726f87304c6984054f87a93b';
const order: Order = {
maker: constants.NULL_ADDRESS,
taker: constants.NULL_ADDRESS,
feeRecipient: constants.NULL_ADDRESS,
makerTokenAddress: constants.NULL_ADDRESS,
takerTokenAddress: constants.NULL_ADDRESS,
- exchangeContractAddress,
+ exchangeContractAddress: fakeExchangeContractAddress,
salt: new BigNumber(0),
makerFee: new BigNumber(0),
takerFee: new BigNumber(0),