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"