diff --git a/kayobe/tests/unit/test_utils.py b/kayobe/tests/unit/test_utils.py index 32068c290..dbd057486 100644 --- a/kayobe/tests/unit/test_utils.py +++ b/kayobe/tests/unit/test_utils.py @@ -52,8 +52,7 @@ def test_galaxy_collection_install(self, mock_read, mock_run): "install", "--collections-path", "/path/to/collections", "--requirements-file", - "/path/to/collection/file"], - env=env) + "/path/to/collection/file"]) @mock.patch.object(utils, "run_command") @mock.patch.object(utils, "read_yaml_file") @@ -82,8 +81,7 @@ def test_galaxy_collection_no_collections(self, mock_read, mock_run): "install", "--collections-path", "/path/to/collections", "--requirements-file", - "/path/to/collection/file"], - env=env) + "/path/to/collection/file"]) @mock.patch.object(utils, "run_command") @mock.patch.object(utils, "read_yaml_file")