diff --git a/tools/test.py b/tools/test.py index e652e47092c55b..9dc99eff518705 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1749,7 +1749,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