Skip to content

Commit

Permalink
revert oss_fuzz_corpus typo fix (#1997)
Browse files Browse the repository at this point in the history
This reverts #1993

the comments in experiment-requests.yml are untouchable without breaking
tests
  • Loading branch information
ndrewh authored Jun 13, 2024
1 parent 0f85b4a commit aec0123
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/automatic_run_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit aec0123

Please sign in to comment.