From 90aa21936cf2e8d26f740e2224fdab2419f20c6c Mon Sep 17 00:00:00 2001 From: Matt Ranney Date: Mon, 14 Nov 2011 20:14:49 -1000 Subject: [PATCH] Update TODO comment --- test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.js b/test.js index 556741b..7c28bcd 100644 --- a/test.js +++ b/test.js @@ -396,7 +396,7 @@ tests.HMSET_BUFFER_AND_ARRAY = function () { client.HMSET(key, field1, value1, field2, value2, last(name, require_string("OK", name))); }; -// TODO - add test for HMSET. It is special. Test for all forms as well as optional callbacks +// TODO - add test for HMSET with optional callbacks tests.HMGET = function () { var key1 = "test hash 1", key2 = "test hash 2", name = "HMGET"; @@ -1162,7 +1162,7 @@ tests.MONITOR = function () { tests.BLPOP = function () { var name = "BLPOP"; - + client.rpush("blocking list", "initial value", function (err, res) { client2.BLPOP("blocking list", 0, function (err, res) { assert.strictEqual("blocking list", res[0].toString());