Skip to content

Commit f738ac5

Browse files
Simon Prickettleibale
andauthored
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 <leibale1998@gmail.com>
1 parent 23991f7 commit f738ac5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/search/lib/commands/index.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ describe('pushSortByArguments', () => {
55
describe('single', () => {
66
it('string', () => {
77
assert.deepEqual(
8-
pushSortByArguments([], 'SORTBT', '@property'),
9-
['SORTBT', '1', '@property']
8+
pushSortByArguments([], 'SORTBY', '@property'),
9+
['SORTBY', '1', '@property']
1010
);
1111
});
1212

1313
it('.BY', () => {
1414
assert.deepEqual(
15-
pushSortByArguments([], 'SORTBT', { BY: '@property' }),
16-
['SORTBT', '1', '@property']
15+
pushSortByArguments([], 'SORTBY', { BY: '@property' }),
16+
['SORTBY', '1', '@property']
1717
);
1818
});
1919

0 commit comments

Comments
 (0)