diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-29 22:53:07 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-29 22:53:07 +0800 |
commit | 43082b576ce764cf896d6c3b9fdae8c414467794 (patch) | |
tree | 53c7db13e0d22ef676c9c3ea34d8009ac6586109 | |
parent | 041394e652db09b6f90e1057beb657b159dc0e56 (diff) | |
download | dexon-sol-tools-43082b576ce764cf896d6c3b9fdae8c414467794.tar dexon-sol-tools-43082b576ce764cf896d6c3b9fdae8c414467794.tar.gz dexon-sol-tools-43082b576ce764cf896d6c3b9fdae8c414467794.tar.bz2 dexon-sol-tools-43082b576ce764cf896d6c3b9fdae8c414467794.tar.lz dexon-sol-tools-43082b576ce764cf896d6c3b9fdae8c414467794.tar.xz dexon-sol-tools-43082b576ce764cf896d6c3b9fdae8c414467794.tar.zst dexon-sol-tools-43082b576ce764cf896d6c3b9fdae8c414467794.zip |
Fix typos
-rw-r--r-- | test/0x.js_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts index 26684972f..bb312a00f 100644 --- a/test/0x.js_test.ts +++ b/test/0x.js_test.ts @@ -180,7 +180,7 @@ describe('ZeroEx library', () => { const ecSignature = await zeroEx.signOrderHashAsync(orderHash); expect(ecSignature).to.deep.equal(expectedECSignature); }); - it ('should return the correct ECSignature on Party > V1.6.6', async () => { + it ('should return the correct ECSignature on Parity > V1.6.6', async () => { const newParityNodeVersion = 'Parity//v1.6.7-beta-e128418-20170518/x86_64-macos/rustc1.17.0'; const orderHash = '0x34decbedc118904df65f379a175bb39ca18209d6ce41d5ed549d54e6e0a95004'; // tslint:disable-next-line: max-line-length @@ -204,7 +204,7 @@ describe('ZeroEx library', () => { const ecSignature = await zeroEx.signOrderHashAsync(orderHash); expect(ecSignature).to.deep.equal(expectedECSignature); }); - it ('should return the correct ECSignature on Party < V1.6.6', async () => { + it ('should return the correct ECSignature on Parity < V1.6.6', async () => { const newParityNodeVersion = 'Parity//v1.6.6-beta-8c6e3f3-20170411/x86_64-macos/rustc1.16.0'; const orderHash = '0xc793e33ffded933b76f2f48d9aa3339fc090399d5e7f5dec8d3660f5480793f7'; // tslint:disable-next-line: max-line-length |