mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-22 16:30:34 +01:00
fix: numeric strings in mongo (#11498)
This commit is contained in:
committed by
GitHub
parent
f8ae6ef7ef
commit
6bed65dde6
@@ -452,6 +452,12 @@ describe('Sorted Set methods', () => {
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
it('should return elements if min/max are numeric strings', async () => {
|
||||
await db.sortedSetAdd('zsetstringminmax', [1, 2, 3, 4, 5], ['value1', 'value2', 'value3', 'value4', 'value5']);
|
||||
const results = await db.getSortedSetRevRangeByScore('zsetstringminmax', 0, -1, '3', '3');
|
||||
assert.deepStrictEqual(results, ['value3']);
|
||||
});
|
||||
});
|
||||
|
||||
describe('getSortedSetRevRangeByScore()', () => {
|
||||
|
||||
Reference in New Issue
Block a user