fixing case of comments

This commit is contained in:
Jack Danger 2017-08-02 15:58:32 -07:00
parent 543e5fb077
commit 7cff406778

View File

@ -492,7 +492,7 @@ def test_target_group_attributes():
attributes['deregistration_delay.timeout_seconds'].should.equal('300') attributes['deregistration_delay.timeout_seconds'].should.equal('300')
attributes['stickiness.enabled'].should.equal('false') attributes['stickiness.enabled'].should.equal('false')
# add cookie stickiness # Add cookie stickiness
response = conn.modify_target_group_attributes( response = conn.modify_target_group_attributes(
TargetGroupArn=target_group_arn, TargetGroupArn=target_group_arn,
Attributes=[ Attributes=[
@ -506,7 +506,7 @@ def test_target_group_attributes():
}, },
]) ])
# the response should have only the keys updated # The response should have only the keys updated
response['Attributes'].should.have.length_of(2) response['Attributes'].should.have.length_of(2)
attributes = {attr['Key']: attr['Value'] for attr in response['Attributes']} attributes = {attr['Key']: attr['Value'] for attr in response['Attributes']}
attributes['stickiness.type'].should.equal('lb_cookie') attributes['stickiness.type'].should.equal('lb_cookie')