From c071c5b3a2428619acebfaafe1ca568453ff858a Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Mon, 20 Jul 2009 17:49:55 +0200 Subject: [PATCH] Fix unittests broken by commit 2bb5c9115f MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit File "../test/ganeti.hooks_unittest.py", line 239, in setUp self.lu = FakeLU(FakeProc(), self.op, self.context, None) File "β¦/ganeti/cmdlib.py", line 92, in __init__ self.LogStep = processor.LogStep AttributeError: FakeProc instance has no attribute 'LogStep' Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- test/mocks.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/mocks.py b/test/mocks.py index 58e68c3c3..4c0ae072c 100644 --- a/test/mocks.py +++ b/test/mocks.py @@ -61,6 +61,10 @@ class FakeProc: def LogInfo(self, msg, *args, **kwargs): pass + def LogStep(self, current, total, message): + pass + + class FakeContext: """Fake context object""" -- GitLab