Stop patching tripleo_common.actions.deployment.OvercloudRcAction

This has been removed in https://review.opendev.org/#/c/727655/

Change-Id: I3897ce40496cb21aba5945084b5790b72039d06a
Closes-Bug: #1879932
This commit is contained in:
Rabi Mishra 2020-05-21 16:30:02 +05:30
parent bef76cb540
commit d33d6d879f
1 changed files with 0 additions and 6 deletions

View File

@ -108,9 +108,3 @@ class TestDeployOvercloud(fakes.FakePlaybookExecution):
def setUp(self):
super(TestDeployOvercloud, self).setUp(ansible_mock=False)
self.rc_action_patcher = mock.patch(
'tripleo_common.actions.deployment.OvercloudRcAction',
autospec=True)
self.mock_rc_action = self.rc_action_patcher.start()
self.addCleanup(self.rc_action_patcher.stop)