From d8033cdbee33969712cee26a96ad31fcec940995 Mon Sep 17 00:00:00 2001 From: rmokiem-topdesk Date: Tue, 31 Dec 2013 13:37:07 +0100 Subject: [PATCH] Fixed error in string formatting --- src/sp_test/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sp_test/base.py b/src/sp_test/base.py index bc2509d..ad86de0 100644 --- a/src/sp_test/base.py +++ b/src/sp_test/base.py @@ -321,7 +321,7 @@ class Conversation(): self.intermit(flow[0]._interaction) logger.info("TEST FLOW: Handling redirect") self.handle_redirect() - logger.info("TEST FLOW: Sending IdP Response with expected request %s and response to be used %s" % flow[1].__name__, flow[2].__name__) + logger.info("TEST FLOW: Sending IdP Response with expected request %s and response to be used %s" % (flow[1].__name__, flow[2].__name__)) self.send_idp_response(flow[1], flow[2]) if len(flow) == 4: logger.info("TEST FLOW Handling result with HTTP Response check for %s" % flow[3].__name__)