diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-08-09 05:18:24 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-08-09 05:18:24 +0800 |
commit | cc67c0df51037d093567b82fa4ca7962c5c3bfdd (patch) | |
tree | 7dcf8e8ad7932c94e3146faa2f2a9d5e5eb54a05 /packages/json-schemas/test | |
parent | 76b91cbcda160b4143fb36cbcd1c1db24bb68229 (diff) | |
download | dexon-sol-tools-cc67c0df51037d093567b82fa4ca7962c5c3bfdd.tar dexon-sol-tools-cc67c0df51037d093567b82fa4ca7962c5c3bfdd.tar.gz dexon-sol-tools-cc67c0df51037d093567b82fa4ca7962c5c3bfdd.tar.bz2 dexon-sol-tools-cc67c0df51037d093567b82fa4ca7962c5c3bfdd.tar.lz dexon-sol-tools-cc67c0df51037d093567b82fa4ca7962c5c3bfdd.tar.xz dexon-sol-tools-cc67c0df51037d093567b82fa4ca7962c5c3bfdd.tar.zst dexon-sol-tools-cc67c0df51037d093567b82fa4ca7962c5c3bfdd.zip |
Correct orderbook typo
Diffstat (limited to 'packages/json-schemas/test')
-rw-r--r-- | packages/json-schemas/test/schema_test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/json-schemas/test/schema_test.ts b/packages/json-schemas/test/schema_test.ts index 1f59f4da2..61ef3d7ac 100644 --- a/packages/json-schemas/test/schema_test.ts +++ b/packages/json-schemas/test/schema_test.ts @@ -28,7 +28,7 @@ const { txDataSchema, paginatedCollectionSchema, relayerApiErrorResponseSchema, - relayerApiOrderBookResponseSchema, + relayerApiOrderbookResponseSchema, relayerApiAssetDataPairsResponseSchema, relayerApiOrderConfigPayloadSchema, relayerApiOrderConfigResponseSchema, @@ -623,7 +623,7 @@ describe('Schema', () => { validateAgainstSchema(testCases, relayerApiOrdersResponseSchema, shouldFail); }); }); - describe('#relayerApiOrderBookResponseSchema', () => { + describe('#relayerApiOrderbookResponseSchema', () => { it('should validate valid order book responses', () => { const testCases = [ { @@ -657,7 +657,7 @@ describe('Schema', () => { }, }, ]; - validateAgainstSchema(testCases, relayerApiOrderBookResponseSchema); + validateAgainstSchema(testCases, relayerApiOrderbookResponseSchema); }); it('should fail for invalid order fill requests', () => { const testCases = [ |