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:
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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user