diff --git a/tools/test.py b/tools/test.py index a0a3121e486b3e..66b9c7291f36af 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1747,7 +1747,7 @@ def DoSkip(case): timed_tests.sort(lambda a, b: a.CompareTime(b)) index = 1 for entry in timed_tests[:20]: - t = FormatTime(entry.duration) + t = FormatTime(entry.duration.total_seconds()) sys.stderr.write("%4i (%s) %s\n" % (index, t, entry.GetLabel())) index += 1