aboutsummaryrefslogtreecommitdiffstats
path: root/test/0x.js_test.ts
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-07-12 08:45:46 +0800
committerGitHub <noreply@github.com>2017-07-12 08:45:46 +0800
commit89236fff410563c0d290e0a8090864cf21bae62e (patch)
tree04781f5e1e7887f3375e7d4d17b490110760a67e /test/0x.js_test.ts
parent98e8a6dd706f0a630402d9009ad3dcf9b0ff872d (diff)
parent6c62c92f0c26ec1da688097cfb3d63161281d87d (diff)
downloaddexon-sol-tools-89236fff410563c0d290e0a8090864cf21bae62e.tar
dexon-sol-tools-89236fff410563c0d290e0a8090864cf21bae62e.tar.gz
dexon-sol-tools-89236fff410563c0d290e0a8090864cf21bae62e.tar.bz2
dexon-sol-tools-89236fff410563c0d290e0a8090864cf21bae62e.tar.lz
dexon-sol-tools-89236fff410563c0d290e0a8090864cf21bae62e.tar.xz
dexon-sol-tools-89236fff410563c0d290e0a8090864cf21bae62e.tar.zst
dexon-sol-tools-89236fff410563c0d290e0a8090864cf21bae62e.zip
Merge pull request #107 from 0xProject/static-get-order-hash-hex
Static get order hash hex
Diffstat (limited to 'test/0x.js_test.ts')
-rw-r--r--test/0x.js_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts
index c6ede843f..3d9aa105b 100644
--- a/test/0x.js_test.ts
+++ b/test/0x.js_test.ts
@@ -142,7 +142,7 @@ describe('ZeroEx library', () => {
expirationUnixTimestampSec: new BigNumber(0),
};
it('calculates the order hash', async () => {
- const orderHash = zeroEx.getOrderHashHex(order);
+ const orderHash = ZeroEx.getOrderHashHex(order);
expect(orderHash).to.be.equal(expectedOrderHash);
});
});