From 232b83256338bb0b59ebae266c4044ef1ab14bd3 Mon Sep 17 00:00:00 2001 From: Yann Lambret Date: Wed, 20 Apr 2016 23:21:39 +0200 Subject: [PATCH] Change type for IpProtocol key --- tests/test_ec2/test_security_groups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ec2/test_security_groups.py b/tests/test_ec2/test_security_groups.py index 2588f7ae0..6e09925b5 100644 --- a/tests/test_ec2/test_security_groups.py +++ b/tests/test_ec2/test_security_groups.py @@ -212,7 +212,7 @@ def test_authorize_other_group_egress_and_revoke(): sg02 = ec2.create_security_group(GroupName='sg02', Description='Test security group sg02', VpcId=vpc.id) ip_permission = { - 'IpProtocol': u'tcp', + 'IpProtocol': 'tcp', 'FromPort': 27017, 'ToPort': 27017, 'UserIdGroupPairs': [{'GroupId': sg02.id, 'GroupName': 'sg02', 'UserId': sg02.owner_id}],