Skip to content

Commit c6b9bba

Browse files
authored
[exp] fix arg passing for forge gha (aptos-labs#9203)
1 parent 07395aa commit c6b9bba

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

testsuite/exp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ def workflow_dispatch_forge(
193193
git_sha: str,
194194
duration: int = 480,
195195
test_suite: str = FORGE_DEFAULT_TEST_SUITE,
196-
cluster_name: str = FORGE_DEFAULT_CLUSTER_NAME,
197196
dry_run: bool = False,
198197
wait: bool = False,
199198
) -> bool:
@@ -214,7 +213,7 @@ def workflow_dispatch_forge(
214213
"--field",
215214
f"FORGE_TEST_SUITE={test_suite}",
216215
"--field",
217-
f"FORGE_CLUSTER_NAME={cluster_name}",
216+
f"FORGE_CLUSTER_NAME={FORGE_DEFAULT_CLUSTER_NAME}",
218217
]
219218
log.info(
220219
"%s: $ %s",
@@ -380,9 +379,10 @@ def run(
380379
shell,
381380
new_exp_git_branch,
382381
git_sha,
383-
forge_runner_duration_secs,
384-
forge_test_suite,
385-
dry_run,
382+
duration=forge_runner_duration_secs,
383+
test_suite=forge_test_suite,
384+
dry_run=dry_run,
385+
wait=wait,
386386
)
387387
if not forge_workflow_dispatch_status:
388388
log.error("Forge test workflow failed")

0 commit comments

Comments
 (0)