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

Fix incorrect test

This commit is contained in:
Pieter Noordhuis
2010-11-30 23:00:32 +01:00
parent 8c158eb75f
commit 7b4ca228d6

View File

@@ -158,7 +158,7 @@ tests.MULTI_3 = function () {
])
.scard("some set")
.exec(function (err, replies) {
assert.strictEqual(true, is_empty_array(replies[2][0]), name);
assert.strictEqual(true, is_empty_array(replies[2]), name);
next(name);
});
};