From 8fc3422e7c67b28b2d46246a8a3008d899b79553 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();