From aec012393e5cd5783a7f2e22c35cec28c6325dbc Mon Sep 17 00:00:00 2001 From: ath0 Date: Wed, 12 Jun 2024 21:04:43 -0400 Subject: [PATCH] revert oss_fuzz_corpus typo fix (#1997) This reverts #1993 the comments in experiment-requests.yml are untouchable without breaking tests --- service/automatic_run_experiment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/automatic_run_experiment.py b/service/automatic_run_experiment.py index 38c9059ad..f1d9f180e 100644 --- a/service/automatic_run_experiment.py +++ b/service/automatic_run_experiment.py @@ -64,7 +64,7 @@ def _get_description(experiment_config: dict) -> Optional[str]: def _use_oss_fuzz_corpus(experiment_config: dict) -> bool: """Returns the oss_fuzz_corpus flag of the experiment described by |experiment_config| as a bool.""" - return bool(experiment_config.get('oss-fuzz-corpus')) + return bool(experiment_config.get('oss_fuzz_corpus')) def _get_requested_experiments():