summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRod Vagg <rod@vagg.org>2016-06-08 16:32:10 +1000
committerEvan Lucas <evanlucas@me.com>2016-06-15 18:19:10 -0500
commit798a737f453af92795d49f959ddc1a748266d953 (patch)
treede51297edbf1eb172d50cded5348bfce4b6de26c /tools
parent72e4e43b91d4febbb89d9d7ef0e390ab8a954392 (diff)
downloadnode-new-798a737f453af92795d49f959ddc1a748266d953.tar.gz
Revert "test: change duration_ms to duration"
This reverts commit d413378e513c47a952f7979c74f4a4d9f144ca7d. PR-URL: https://github.com/nodejs/node/pull/7216 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py
index 7553da9a3c..ab3da337bc 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -310,7 +310,7 @@ class TapProgressIndicator(SimpleProgressIndicator):
(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):