Closed duartemendes closed 6 years ago
As stated in redis commands and to respect the redis package behaviour, the HMGET should return null instead of undefined for fields that are not defined.
For: redisClient.hmget("hash", "field1", "field2", "field3") Expected: [null, null, null] Actual: [undefined, undefined, undefined]
[null, null, null]
[undefined, undefined, undefined]
As stated in redis commands and to respect the redis package behaviour, the HMGET should return null instead of undefined for fields that are not defined.
For: redisClient.hmget("hash", "field1", "field2", "field3") Expected:
[null, null, null]
Actual:[undefined, undefined, undefined]