From 7c5e9fb91b1fc5af13db0cfc4dca1a44f2f432fc Mon Sep 17 00:00:00 2001 From: Corey Bryant Date: Wed, 15 Apr 2015 14:57:22 +0000 Subject: [PATCH] Fixup test_git_reinstall_exception() --- unit_tests/test_actions_git_reinstall.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/unit_tests/test_actions_git_reinstall.py b/unit_tests/test_actions_git_reinstall.py index 8897f57f..85550ae8 100644 --- a/unit_tests/test_actions_git_reinstall.py +++ b/unit_tests/test_actions_git_reinstall.py @@ -73,8 +73,9 @@ class TestNeutronAPIActions(CharmTestCase): @patch.object(git_reinstall, 'action_set') @patch.object(git_reinstall, 'action_fail') @patch.object(git_reinstall, 'git_install') + @patch('traceback.format_exc') @patch('charmhelpers.contrib.openstack.utils.config') - def test_git_reinstall_exception(self, _config, git_install, + def test_git_reinstall_exception(self, _config, format_exc, git_install, action_fail, action_set): _config.return_value = openstack_origin_git e = OSError('something bad happened') @@ -88,6 +89,7 @@ class TestNeutronAPIActions(CharmTestCase): " File \"/usr/lib/python2.7/dist-packages/mock.py\", line 1019, in _mock_call\n" # noqa " raise effect\n" "OSError: something bad happened\n") + format_exc.return_value = traceback git_reinstall.git_reinstall()