[infra] Fix env variable in the helper.py repoduce command (#3230)

This commit is contained in:
Leo Neat 2020-01-14 10:50:35 -08:00 committed by Max Moroz
parent c77697b233
commit cca04a14f4
1 changed files with 1 additions and 1 deletions

View File

@ -744,7 +744,7 @@ def run_fuzzer(args):
def reproduce(args):
"""Reproduce a specific test case from a specific project."""
return reproduce_impl(args.project_name, args.fuzzer_name, args.valgrind, args.env_to_add,
return reproduce_impl(args.project_name, args.fuzzer_name, args.valgrind, args.e,
args.fuzzer_args, args.testcase_path)