1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

fix for 592714fb00 - "fix tests"

This commit is contained in:
leibale
2021-11-30 19:21:02 -05:00
parent d0203d713a
commit a45311416d

View File

@@ -196,10 +196,10 @@ describe('SEARCH', () => {
); );
}); });
it('with MSORTBY', () => { it('with SORTBY', () => {
assert.deepEqual( assert.deepEqual(
transformArguments('index', 'query', { MSORTBY: '@by' }), transformArguments('index', 'query', { SORTBY: '@by' }),
['FT.SEARCH', 'index', 'query', 'MSORTBY', '1', '@by'] ['FT.SEARCH', 'index', 'query', 'SORTBY', '1', '@by']
); );
}); });