Merge "Use parenthesis to wrap strings over multiple lines"

This commit is contained in:
Jenkins 2016-09-27 10:24:06 +00:00 committed by Gerrit Code Review
commit 2336066a03
1 changed files with 3 additions and 2 deletions

View File

@ -126,8 +126,9 @@ class ActionExecutionTestsV2(base.TestCase):
resp, body = self.client.create_action_execution(
{
'name': 'std.http',
'input': '{{"url": "http://localhost:8989/v2/workflows",\
"headers": {{"X-Auth-Token": "{}"}}}}'.format(token)
'input': ('{{"url": "http://localhost:8989/v2/workflows",'
'"headers": {{"X-Auth-Token": "{}"}}}}'
).format(token)
}
)