1
0
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:
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 () { 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);
}); });
}; };