From b3b8f18f61c69bc42756cfd0cad7c7df861d3c82 Mon Sep 17 00:00:00 2001 From: Patrick Insinger Date: Thu, 7 Oct 2021 15:38:22 -0700 Subject: [PATCH] tests - fix get_timeline_size signature --- test_runner/fixtures/benchmark_fixture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_runner/fixtures/benchmark_fixture.py b/test_runner/fixtures/benchmark_fixture.py index a2a8cc64d3..328ebcc1f8 100644 --- a/test_runner/fixtures/benchmark_fixture.py +++ b/test_runner/fixtures/benchmark_fixture.py @@ -151,7 +151,7 @@ class ZenithBenchmarker: re.MULTILINE) return int(round(float(matches.group(1)))) - def get_timeline_size(repo_dir: str, tenantid: str, timelineid: str): + def get_timeline_size(self, repo_dir: str, tenantid: str, timelineid: str): """ Calculate the on-disk size of a timeline """