summaryrefslogtreecommitdiff
path: root/buildscripts/evergreen_burn_in_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/evergreen_burn_in_tests.py')
-rw-r--r--buildscripts/evergreen_burn_in_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/evergreen_burn_in_tests.py b/buildscripts/evergreen_burn_in_tests.py
index 37a0d2874ff..a628a9a5d20 100644
--- a/buildscripts/evergreen_burn_in_tests.py
+++ b/buildscripts/evergreen_burn_in_tests.py
@@ -436,8 +436,8 @@ def burn_in(task_id: str, build_variant: str, generate_config: GenerateConfig,
change_detector = EvergreenFileChangeDetector(task_id, evg_api, os.environ)
executor = GenerateBurnInExecutor(generate_config, repeat_config, evg_api, generate_tasks_file)
- burn_in_orchestrator = BurnInOrchestrator(change_detector, executor, evg_conf)
- burn_in_orchestrator.burn_in(repos, build_variant, install_dir)
+ burn_in_orchestrator = BurnInOrchestrator(change_detector, executor, evg_conf, install_dir)
+ burn_in_orchestrator.burn_in(repos, build_variant)
@click.command()