Update account id value in boto_secgroup module unit test

This value was updated in moto 1.0.0 with the following commit:

5f3fbff627
This commit is contained in:
rallytime 2017-08-10 17:31:14 -04:00
parent 60b406e088
commit a0b19bdc27

View file

@ -209,7 +209,7 @@ class BotoSecgroupTestCase(TestCase):
group = conn.create_security_group(name=group_name, description=group_name)
group.authorize(ip_protocol=ip_protocol, from_port=from_port, to_port=to_port, cidr_ip=cidr_ip)
# setup the expected get_config result
expected_get_config_result = OrderedDict([('name', group.name), ('group_id', group.id), ('owner_id', u'111122223333'),
expected_get_config_result = OrderedDict([('name', group.name), ('group_id', group.id),('owner_id', u'123456789012'),
('description', group.description), ('tags', {}),
('rules', [{'to_port': to_port, 'from_port': from_port,
'ip_protocol': ip_protocol, 'cidr_ip': cidr_ip}]),