From: Vasu Kulkarni Date: Thu, 8 Dec 2016 17:45:36 +0000 (-0800) Subject: patch from ansible module instead of ceph_ansible X-Git-Tag: 1.1.0~479^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8c00643a7da85db47c506259754b9f85a0ebab8c;p=teuthology.git patch from ansible module instead of ceph_ansible Signed-off-by: Vasu Kulkarni --- diff --git a/teuthology/test/task/test_ansible.py b/teuthology/test/task/test_ansible.py index 735f0f93..33739f60 100644 --- a/teuthology/test/task/test_ansible.py +++ b/teuthology/test/task/test_ansible.py @@ -36,12 +36,12 @@ class TestAnsibleTask(TestTask): m_file.name = 'file_name' m_NTF.return_value = m_file self.patcher_NTF = patch( - 'teuthology.task.ceph_ansible.ansible.NamedTemporaryFile', + 'teuthology.task.ansible.NamedTemporaryFile', m_NTF, ) self.patcher_NTF.start() self.patcher_os_remove = patch( - 'teuthology.task.ceph_ansible.ansible.os.remove', + 'teuthology.task.ansible.os.remove', ) self.patcher_os_remove.start()