Skip to content

Commit

Permalink
fix integ tests
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Oviedo <[email protected]>
  • Loading branch information
OVI3D0 committed Jan 30, 2025
1 parent ea7c0dc commit 2126a93
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion it/list_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions osbenchmark/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit 2126a93

Please sign in to comment.