diff options
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 = [ |