From f738ac56b3d7cc7ff0002875f8cf33fb450bbb38 Mon Sep 17 00:00:00 2001 From: Simon Prickett Date: Tue, 15 Feb 2022 21:09:23 +0000 Subject: [PATCH] Fixed what I think are a couple of typos -> `SORTBT` -> `SORTBY`. (#1987) * Fixed what I think are a couple of typos -> `SORTBT` -> `SORTBY`. Fixed what I think are a couple of typos -> `SORTBT` -> `SORTBY`. * Update index.spec.ts Co-authored-by: Leibale Eidelman --- packages/search/lib/commands/index.spec.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/search/lib/commands/index.spec.ts b/packages/search/lib/commands/index.spec.ts index f0afa304a9..4c54a0dfdf 100644 --- a/packages/search/lib/commands/index.spec.ts +++ b/packages/search/lib/commands/index.spec.ts @@ -5,15 +5,15 @@ describe('pushSortByArguments', () => { describe('single', () => { it('string', () => { assert.deepEqual( - pushSortByArguments([], 'SORTBT', '@property'), - ['SORTBT', '1', '@property'] + pushSortByArguments([], 'SORTBY', '@property'), + ['SORTBY', '1', '@property'] ); }); it('.BY', () => { assert.deepEqual( - pushSortByArguments([], 'SORTBT', { BY: '@property' }), - ['SORTBT', '1', '@property'] + pushSortByArguments([], 'SORTBY', { BY: '@property' }), + ['SORTBY', '1', '@property'] ); });