From b76680b045f69e03759bc119f4827f337a8f395d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Ma=C5=82ecki?= Date: Tue, 1 Nov 2011 00:56:25 +0100 Subject: [PATCH] [minor] Change test runner output order --- test/core/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/run b/test/core/run index 4210052..fe156fd 100755 --- a/test/core/run +++ b/test/core/run @@ -75,8 +75,8 @@ async.forEachSeries(tests, runTest, function () { } console.log('\nSummary:'); - console.log((' ' + failed.length + '\tfailed tests').red); console.log((' ' + ok.length + '\tpassed tests').green); + console.log((' ' + failed.length + '\tfailed tests').red); }); // vim:filetype=javascript