From 3681e3c4f3094aaa84483934c2b2a8cf57d2b36e Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Wed, 8 Jun 2016 18:18:26 -0700 Subject: [PATCH] Fixed typo --- scripts/mocha-parallel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mocha-parallel.js b/scripts/mocha-parallel.js index adba8ebf57c..159dd630cc2 100644 --- a/scripts/mocha-parallel.js +++ b/scripts/mocha-parallel.js @@ -43,7 +43,7 @@ function discoverTests(run, options, cb) { p.on("exit", function (status) { if (status) { - cb(new Error("Process exited width code " + status)); + cb(new Error("Process exited with code " + status)); } else { cb();