From 798a737f453af92795d49f959ddc1a748266d953 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Wed, 8 Jun 2016 16:32:10 +1000 Subject: [PATCH] Revert "test: change duration_ms to duration" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit d413378e513c47a952f7979c74f4a4d9f144ca7d. PR-URL: https://github.com/nodejs/node/pull/7216 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Michaël Zasso Reviewed-By: Johan Bergström --- tools/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test.py b/tools/test.py index 7553da9a3c58c5..ab3da337bc6a24 100755 --- a/tools/test.py +++ b/tools/test.py @@ -310,7 +310,7 @@ def HasRun(self, output): (duration.seconds + duration.days * 24 * 3600) * 10**6) / 10**6 logger.info(' ---') - logger.info(' duration: %d.%ds' % (total_seconds, duration.microseconds / 1000)) + logger.info(' duration_ms: %d.%d' % (total_seconds, duration.microseconds / 1000)) logger.info(' ...') def Done(self):