From 7cff4067789e59fa68372a6ef0bbdb06415c435c Mon Sep 17 00:00:00 2001 From: Jack Danger Date: Wed, 2 Aug 2017 15:58:32 -0700 Subject: [PATCH] fixing case of comments --- tests/test_elbv2/test_elbv2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_elbv2/test_elbv2.py b/tests/test_elbv2/test_elbv2.py index 6bfe2ca4f..ece17571d 100644 --- a/tests/test_elbv2/test_elbv2.py +++ b/tests/test_elbv2/test_elbv2.py @@ -492,7 +492,7 @@ def test_target_group_attributes(): attributes['deregistration_delay.timeout_seconds'].should.equal('300') attributes['stickiness.enabled'].should.equal('false') - # add cookie stickiness + # Add cookie stickiness response = conn.modify_target_group_attributes( TargetGroupArn=target_group_arn, 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) attributes = {attr['Key']: attr['Value'] for attr in response['Attributes']} attributes['stickiness.type'].should.equal('lb_cookie')