From 88c9e28a2717fe03fa6a3f3470081d6d82fce950 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Thu, 29 Oct 2015 23:27:52 +0100 Subject: [PATCH] Fix test --- test/commands/multi.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/commands/multi.spec.js b/test/commands/multi.spec.js index b21d3da0d3..503f20389a 100644 --- a/test/commands/multi.spec.js +++ b/test/commands/multi.spec.js @@ -84,7 +84,7 @@ describe("The 'multi' method", function () { multi1.exec(function (err, res) { assert(called); assert(!err); - assert.strictEqual(res, '456'); + assert.strictEqual(res[1], '456'); done(); }); });