Skip to content

Commit

Permalink
Merge pull request #49005 from rallytime/boto-test-fluorine
Browse files Browse the repository at this point in the history
Port #48999 to Fluorine
  • Loading branch information
Nicole Thomas committed Aug 8, 2018
2 parents 0403a6d + 3f6c621 commit 7f7b0f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/modules/test_boto_secgroup.py
Expand Up @@ -210,7 +210,7 @@ def test_get_config_single_rule_group_name(self):
from_port = 22
to_port = 22
cidr_ip = u'0.0.0.0/0'
rules_egress = [{'to_port': -1, 'from_port': -1, 'ip_protocol': u'-1', 'cidr_ip': u'0.0.0.0/0'}]
rules_egress = [{'to_port': None, 'from_port': None, 'ip_protocol': u'-1', 'cidr_ip': u'0.0.0.0/0'}]

conn = boto.ec2.connect_to_region(region, **boto_conn_parameters)
group = conn.create_security_group(name=group_name, description=group_name)
Expand Down

0 comments on commit 7f7b0f9

Please sign in to comment.