aboutsummaryrefslogtreecommitdiffstats
path: root/test/0x.js_test.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-06-06 20:10:36 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-06-06 20:10:36 +0800
commit80bbfc3f0ff6d000e628d6db4baddae94c4911a0 (patch)
tree7f1a00fd2b74affa7e8a7ce1cf2e66a98c087138 /test/0x.js_test.ts
parentabd6fbfa648a540342d9c183fc8f5b36248b6055 (diff)
downloaddexon-sol-tools-80bbfc3f0ff6d000e628d6db4baddae94c4911a0.tar
dexon-sol-tools-80bbfc3f0ff6d000e628d6db4baddae94c4911a0.tar.gz
dexon-sol-tools-80bbfc3f0ff6d000e628d6db4baddae94c4911a0.tar.bz2
dexon-sol-tools-80bbfc3f0ff6d000e628d6db4baddae94c4911a0.tar.lz
dexon-sol-tools-80bbfc3f0ff6d000e628d6db4baddae94c4911a0.tar.xz
dexon-sol-tools-80bbfc3f0ff6d000e628d6db4baddae94c4911a0.tar.zst
dexon-sol-tools-80bbfc3f0ff6d000e628d6db4baddae94c4911a0.zip
Last round of renamings
Diffstat (limited to 'test/0x.js_test.ts')
-rw-r--r--test/0x.js_test.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts
index edc2a3493..43c50ef34 100644
--- a/test/0x.js_test.ts
+++ b/test/0x.js_test.ts
@@ -191,12 +191,12 @@ describe('ZeroEx library', () => {
});
describe('#signOrderHashAsync', () => {
let stubs: Sinon.SinonStub[] = [];
- let makerAccount: string;
+ let makerAddress: string;
const web3 = web3Factory.create();
const zeroEx = new ZeroEx(web3);
before(async () => {
- const availableAccounts = await zeroEx.getAvailableAddressesAsync();
- makerAccount = availableAccounts[0];
+ const availableAddreses = await zeroEx.getAvailableAddressesAsync();
+ makerAddress = availableAddreses[0];
});
afterEach(() => {
// clean up any stubs after the test has completed
@@ -210,7 +210,7 @@ describe('ZeroEx library', () => {
r: '0x61a3ed31b43c8780e905a260a35faefcc527be7516aa11c0256729b5b351bc33',
s: '0x40349190569279751135161d22529dc25add4f6069af05be04cacbda2ace2254',
};
- const ecSignature = await zeroEx.signOrderHashAsync(orderHash, makerAccount);
+ const ecSignature = await zeroEx.signOrderHashAsync(orderHash, makerAddress);
expect(ecSignature).to.deep.equal(expectedECSignature);
});
it ('should return the correct ECSignature on Parity > V1.6.6', async () => {
@@ -231,7 +231,7 @@ describe('ZeroEx library', () => {
Sinon.stub(ZeroEx, 'isValidSignature').returns(true),
];
- const ecSignature = await zeroEx.signOrderHashAsync(orderHash, makerAccount);
+ const ecSignature = await zeroEx.signOrderHashAsync(orderHash, makerAddress);
expect(ecSignature).to.deep.equal(expectedECSignature);
});
it ('should return the correct ECSignature on Parity < V1.6.6', async () => {
@@ -252,7 +252,7 @@ describe('ZeroEx library', () => {
Sinon.stub(ZeroEx, 'isValidSignature').returns(true),
];
- const ecSignature = await zeroEx.signOrderHashAsync(orderHash, makerAccount);
+ const ecSignature = await zeroEx.signOrderHashAsync(orderHash, makerAddress);
expect(ecSignature).to.deep.equal(expectedECSignature);
});
});