@@ -131,7 +131,7 @@ def join_side_effect(*args):
131131
132132 # Verify docker run command was called
133133 mock_docker_run_cmd .assert_called_once_with ("default" , "/tmp/test_dir" )
134- mock_cmd_output .assert_any_call ("mock run command" , env = ANY , cwd = "/test" )
134+ mock_cmd_output .assert_any_call ("mock run command" , env = ANY )
135135
136136 # Verify archives directory was created
137137 mock_makedirs .assert_called_once_with ("payload/archives" , exist_ok = True )
@@ -219,7 +219,7 @@ def join_side_effect(*args):
219219
220220 # Verify docker run command was called
221221 mock_docker_run_cmd .assert_called_once_with ("default" , "/tmp/test_dir" )
222- mock_cmd_output .assert_any_call ("mock run command" , env = ANY , cwd = "/test" )
222+ mock_cmd_output .assert_any_call ("mock run command" , env = ANY )
223223
224224 # Verify archives directory was created
225225 mock_makedirs .assert_called_once_with ("payload/archives" , exist_ok = True )
@@ -491,7 +491,7 @@ def exists_side_effect(path):
491491
492492 # Verify docker run command was called
493493 mock_docker_run_cmd .assert_called_once_with ("default" , "/tmp/test_dir" )
494- mock_cmd_output .assert_any_call ("mock run command" , env = ANY , cwd = "/test" )
494+ mock_cmd_output .assert_any_call ("mock run command" , env = ANY )
495495
496496 # Verify payload directory was created
497497 mock_makedirs .assert_called_once_with ("payload" , exist_ok = True )
0 commit comments