Correct orderbook typo

This commit is contained in:
fragosti
2018-08-08 14:18:24 -07:00
parent 76b91cbcda
commit cc67c0df51
3 changed files with 7 additions and 7 deletions

View File

@@ -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 = [