From c4124da4f25860497790fc06c97dde6e8985ab73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Ma=C5=82ecki?= Date: Tue, 1 Nov 2011 20:19:58 +0100 Subject: [PATCH] [minor] Fix indent on timeout notice --- test/core/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/run b/test/core/run index 8f72a9a..adec53b 100755 --- a/test/core/run +++ b/test/core/run @@ -42,7 +42,7 @@ function runTest(test, callback) { var killTimeout = setTimeout(function () { child.kill(); - console.log(path.basename(test).yellow + ' timed out'.red); + console.log(' ' + path.basename(test).yellow + ' timed out'.red); }, testTimeout); child.on('exit', function (exitCode) {