You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-09 00:22:08 +03:00
Fixed HGETALL_NULL assertions
This commit is contained in:
4
test.js
4
test.js
@@ -350,8 +350,8 @@ tests.HGETALL = function () {
|
|||||||
tests.HGETALL_NULL = function () {
|
tests.HGETALL_NULL = function () {
|
||||||
var name = "HGETALL_NULL";
|
var name = "HGETALL_NULL";
|
||||||
client.hgetall('missing', function(err, obj){
|
client.hgetall('missing', function(err, obj){
|
||||||
console.log(err);
|
assert.strictEqual(null, err);
|
||||||
console.log(obj);
|
assert.strictEqual(null, obj);
|
||||||
next(name);
|
next(name);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user