From 2e56677ab9b9b8dcecf58022c003ed3c48467ea3 Mon Sep 17 00:00:00 2001 From: Sean Lavine Date: Fri, 26 Jun 2015 14:12:56 -0700 Subject: [PATCH] fix missing cmds not being found in tests --- test/missing-commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/missing-commands.js b/test/missing-commands.js index 8c2744b..5fe961d 100644 --- a/test/missing-commands.js +++ b/test/missing-commands.js @@ -31,7 +31,7 @@ describe('Client Commands', function() { assert.ifError(err); for (var i in helpCommands) { - var found = true; + var found = false; for (var j in commands) { if (commands[j] === helpCommands[i]) { found = true;