Use parenthesis to wrap strings over multiple lines

Change-Id: Id85fae325b1de97bc90c9555ad9a17b4f3436ef3
This commit is contained in:
Dougal Matthews 2016-09-26 10:58:33 +01:00
parent 93218a35ee
commit 5edd4faac9
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)
}
)