From 46f046369d17b55f25e5feb272db8f7424eeb6c7 Mon Sep 17 00:00:00 2001 From: Marius Merschformann Date: Mon, 16 Dec 2024 07:43:10 +0100 Subject: [PATCH] Adding missing param --- .nextmv/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.nextmv/benchmark.py b/.nextmv/benchmark.py index 1e41d57..f65e3fa 100644 --- a/.nextmv/benchmark.py +++ b/.nextmv/benchmark.py @@ -134,7 +134,7 @@ def main(): id = f"auto-{tag}" print(f"Running acceptance test with ID: {id}") print("Waiting for it to complete...") - result = run_acceptance_test(app, tag) + result = run_acceptance_test(app, id, tag) passed = "unknown" if result and result.results: passed = "passed" if result.results.passed else "failed"