Skip to content

Commit

Permalink
Fix saturated corpus experiment requests (#1993)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndrewh authored Jun 4, 2024
1 parent 421187b commit 0f85b4a
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 0f85b4a

Please sign in to comment.