diff options
-rwxr-xr-x | monkey/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monkey/test.py b/monkey/test.py index f8264b0..01caf08 100755 --- a/monkey/test.py +++ b/monkey/test.py @@ -72,7 +72,7 @@ if len(sys.argv) >= 3 and sys.argv[2] == 'test': print(colored('Analyzing program {0}/{1}…'.format(i+1, len(incorrect)), 'yellow')) print(indent(compose(*decompose(program)), 2)) - solution, steps, fix_time, n_tested = fix(problem.name, program, edits, timeout=timeout) + solution, steps, fix_time, n_tested = fix(problem.name, program, edits, aux_code=aux_code, timeout=timeout) if solution: done.append(program) print_hint(solution, steps, fix_time, n_tested) |