diff --git a/tests/test_utils.py b/tests/test_utils.py index 3b3b8946ae..8323d2bd10 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -197,6 +197,7 @@ def test_temporary_docker_directory_uses_hard_link(): template_dir=None, plugins_dir=None, static=[], + install=[], ) as temp_docker: hello = os.path.join(temp_docker, 'hello') assert 'world' == open(hello).read() @@ -221,6 +222,7 @@ def test_temporary_docker_directory_uses_copy_if_hard_link_fails(mock_link): template_dir=None, plugins_dir=None, static=[], + install=[], ) as temp_docker: hello = os.path.join(temp_docker, 'hello') assert 'world' == open(hello).read()