fix: closes #11343, don't crash if tags array is empty

This commit is contained in:
Barış Soner Uşaklı
2023-03-10 11:40:02 -05:00
parent c03d5db71e
commit 56427e4f9d
4 changed files with 10 additions and 2 deletions

View File

@@ -996,6 +996,11 @@ describe('Sorted Set methods', () => {
done();
});
});
it('should return empty array if sets is empty', async () => {
const result = await db.getSortedSetRevUnion({ sets: [], start: 0, stop: -1 });
assert.deepStrictEqual(result, []);
});
});
describe('sortedSetIncrBy()', () => {