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

fix SSCAN

This commit is contained in:
dovi
2023-05-03 18:26:56 -04:00
parent 65c691fd75
commit 92b38a1f37

View File

@@ -40,7 +40,7 @@ describe('SSCAN', () => {
}); });
}); });
testUtils.testWithClient('client.sScan', async client => { testUtils.testAll('sScan', async client => {
assert.deepEqual( assert.deepEqual(
await client.sScan('key', 0), await client.sScan('key', 0),
{ {
@@ -48,5 +48,8 @@ describe('SSCAN', () => {
members: [] members: []
} }
); );
}, GLOBAL.SERVERS.OPEN); }, {
client: GLOBAL.SERVERS.OPEN,
cluster: GLOBAL.CLUSTERS.OPEN
});
}); });