diff options
Diffstat (limited to 'helm/plugin/tests/test_plugin.py')
-rw-r--r-- | helm/plugin/tests/test_plugin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/helm/plugin/tests/test_plugin.py b/helm/plugin/tests/test_plugin.py index 1b90aa0..864843f 100644 --- a/helm/plugin/tests/test_plugin.py +++ b/helm/plugin/tests/test_plugin.py @@ -34,8 +34,9 @@ class TestPlugin(unittest.TestCase): resources_to_copy=[(path.join('blueprint', 'plugin', 'test_plugin.yaml'), 'plugin')]) + @mock.patch('plugin.tasks.os.remove') @mock.patch('plugin.tasks.execute_command') - def test_stop(self, cfy_local, mock_execute_command): + def test_stop(self, cfy_local, mock_execute_command, mock_os_remove): # execute install workflow """ |