diff --git a/test/commands/multi.spec.js b/test/commands/multi.spec.js index f7204ce..45c3ab3 100644 --- a/test/commands/multi.spec.js +++ b/test/commands/multi.spec.js @@ -210,19 +210,6 @@ describe("The 'multi' method", function () { }); }); - it('allows an array to be provided to hmset', function (done) { - client.multi() - .hmset("arrayhash", ['a', 'b', 'c']) - .hgetall("arrayhash") - .exec(function (err, replies) { - assert.strictEqual(null, err); - assert.equal("OK", replies[0]); - assert.equal(Object.keys(replies[1]).length, 3); - assert.equal("b", replies[1]['1']); - return done(); - }); - }); - }); }); });