File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -439,7 +439,7 @@ def test__build_docker_posix(plugin):
439
439
mock_run .assert_called_once_with (
440
440
image = ANY ,
441
441
command = ANY ,
442
- auto_remove = True ,
442
+ remove = True ,
443
443
volumes = {str (sentinel .base_path ): {"bind" : "/project" , "mode" : "rw" }},
444
444
stream = True ,
445
445
entrypoint = "" ,
@@ -464,7 +464,7 @@ def test__build_docker_windows(plugin):
464
464
mock_run .assert_called_once_with (
465
465
image = ANY ,
466
466
command = ANY ,
467
- auto_remove = True ,
467
+ remove = True ,
468
468
volumes = {str (sentinel .base_path ): {"bind" : "/project" , "mode" : "rw" }},
469
469
stream = True ,
470
470
entrypoint = "" ,
@@ -492,7 +492,7 @@ def test__build_docker_no_euid(plugin):
492
492
mock_run .assert_called_once_with (
493
493
image = ANY ,
494
494
command = ANY ,
495
- auto_remove = True ,
495
+ remove = True ,
496
496
volumes = {str (sentinel .base_path ): {"bind" : "/project" , "mode" : "rw" }},
497
497
stream = True ,
498
498
entrypoint = "" ,
You can’t perform that action at this time.
0 commit comments