FakeClient: fix the arguments of a string format.

Fix the number of arguments in the string format in
FakeClient.assert_called_anytime().

Change-Id: I9d415d6d216a6e301254ba21b63109182d71e8bd
This commit is contained in:
Cyril Roelandt 2013-08-02 15:32:12 +00:00
parent 4ab2b60850
commit 1f85f57faf

@ -53,7 +53,7 @@ class FakeClient(object):
found = True
break
assert found, 'Expected %s %s; got %s' % \
assert found, 'Expected %s; got %s' % \
(expected, self.client.callstack)
if body is not None:
try: