From 1f85f57faf35e371464e157c3e77333be827111d Mon Sep 17 00:00:00 2001
From: Cyril Roelandt <cyril.roelandt@enovance.com>
Date: Fri, 2 Aug 2013 15:32:12 +0000
Subject: [PATCH] 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
---
 novaclient/tests/fakes.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/novaclient/tests/fakes.py b/novaclient/tests/fakes.py
index 3615e4f35..f4b356985 100644
--- a/novaclient/tests/fakes.py
+++ b/novaclient/tests/fakes.py
@@ -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: