Allow black to reformat correctly

This commit is contained in:
Don Kuntz 2020-01-09 23:45:14 -06:00
commit fd1fdde1bf
No known key found for this signature in database
GPG key ID: BC10CA5C55EEE343
3 changed files with 16 additions and 6 deletions

View file

@ -94,7 +94,7 @@ def test_register_task_definition():
"logConfiguration": {"logDriver": "json-file"},
}
],
networkMode='bridge',
networkMode="bridge",
tags=[
{"key": "createdBy", "value": "moto-unittest"},
{"key": "foo", "value": "bar"},
@ -125,7 +125,7 @@ def test_register_task_definition():
response["taskDefinition"]["containerDefinitions"][0]["logConfiguration"][
"logDriver"
].should.equal("json-file")
response['taskDefinition']['networkMode'].should.equal('bridge')
response["taskDefinition"]["networkMode"].should.equal("bridge")
@mock_ecs