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>
This commit is contained in:
Rod Vagg 2016-06-08 16:32:10 +10:00
parent 6b48324363
commit 1d4c7993a9

View File

@ -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):