1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

Fixed HGETALL_NULL assertions

This commit is contained in:
Tj Holowaychuk
2010-09-20 07:34:23 -07:00
parent a93020c555
commit 8cd56f5987

View File

@@ -350,8 +350,8 @@ tests.HGETALL = function () {
tests.HGETALL_NULL = function () {
var name = "HGETALL_NULL";
client.hgetall('missing', function(err, obj){
console.log(err);
console.log(obj);
assert.strictEqual(null, err);
assert.strictEqual(null, obj);
next(name);
});
};