From abd022376b495d67e47c79cceb7254bef97e3fd9 Mon Sep 17 00:00:00 2001 From: swryan Date: Mon, 3 Apr 2023 13:23:21 -0400 Subject: [PATCH] fix benchmark timestamp --- testflo/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testflo/benchmark.py b/testflo/benchmark.py index 41cf5c8..026e18a 100644 --- a/testflo/benchmark.py +++ b/testflo/benchmark.py @@ -7,7 +7,7 @@ class BenchmarkWriter(object): """ def __init__(self, stream=sys.stdout): - self.timestamp = time.perf_counter() + self.timestamp = time.time() self.stream = stream def get_iter(self, input_iter):