From 2126a93553a4cf1b5087b836dc568214aacff4c4 Mon Sep 17 00:00:00 2001 From: Michael Oviedo Date: Thu, 23 Jan 2025 19:23:31 +0000 Subject: [PATCH] fix integ tests Signed-off-by: Michael Oviedo --- it/list_test.py | 2 +- osbenchmark/benchmark.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/it/list_test.py b/it/list_test.py index 24339ac75..03ad65697 100644 --- a/it/list_test.py +++ b/it/list_test.py @@ -27,7 +27,7 @@ @it.all_benchmark_configs def test_list_test_runs(cfg): - assert it.osbenchmark(cfg, "list test_runs") == 0 + assert it.osbenchmark(cfg, "list test-runs") == 0 @it.benchmark_in_mem diff --git a/osbenchmark/benchmark.py b/osbenchmark/benchmark.py index cf0cc0160..d31a755b0 100644 --- a/osbenchmark/benchmark.py +++ b/osbenchmark/benchmark.py @@ -201,12 +201,12 @@ def add_workload_source(subparser): "--baseline", "-b", required=True, - help=f"TestRun ID of the baseline (see {PROGRAM_NAME} list test_runs).") + help=f"TestRun ID of the baseline (see {PROGRAM_NAME} list test-runs).") compare_parser.add_argument( "--contender", "-c", required=True, - help=f"TestRun ID of the contender (see {PROGRAM_NAME} list test_runs).") + help=f"TestRun ID of the contender (see {PROGRAM_NAME} list test-runs).") compare_parser.add_argument( "--percentiles", help=f"A comma-separated list of percentiles to report latency and service time."