@@ -360,7 +360,7 @@ def test_stdio_diff_success(self):
360360 multiprocess = True )
361361 # Check eval_output was called correctly.
362362 self .eval_output .assert_called_once_with (
363- self .file_cacher , job , None ,
363+ self .file_cacher , job , 1 , None ,
364364 user_output_path = "/path/0/output.txt" , user_output_filename = "" , extra_args = None )
365365 # Results put in job and sandbox deleted.
366366 self .assertResultsInJob (job )
@@ -480,7 +480,7 @@ def test_fileio_diff_success(self):
480480 multiprocess = True )
481481 # Check eval_output was called correctly.
482482 self .eval_output .assert_called_once_with (
483- self .file_cacher , job , None , user_output_path = "/path/0/myout" ,
483+ self .file_cacher , job , 1 , None , user_output_path = "/path/0/myout" ,
484484 user_output_filename = "myout" , extra_args = None )
485485 # Results put in job and sandbox deleted.
486486 self .assertResultsInJob (job )
@@ -495,7 +495,7 @@ def test_stdio_checker_success(self):
495495
496496 # We only perform checks for the final eval step (checker).
497497 self .eval_output .assert_called_once_with (
498- self .file_cacher , job , "checker" ,
498+ self .file_cacher , job , 1 , "checker" ,
499499 user_output_path = "/path/0/output.txt" , user_output_filename = "" , extra_args = None )
500500 # Results put in job and sandbox deleted.
501501 self .assertResultsInJob (job )
@@ -510,7 +510,7 @@ def test_fileio_checker_success(self):
510510
511511 # We only perform checks for the final eval step (checker).
512512 self .eval_output .assert_called_once_with (
513- self .file_cacher , job , "checker" ,
513+ self .file_cacher , job , 1 , "checker" ,
514514 user_output_path = "/path/0/myout" ,
515515 user_output_filename = "myout" , extra_args = None )
516516 # Results put in job and sandbox deleted.
0 commit comments