Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rallytime authored and basepi committed Feb 4, 2016
1 parent d868711 commit c7472ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/unit/modules/boto_vpc_test.py
Expand Up @@ -744,7 +744,7 @@ def test_that_describe_subnet_by_id_for_existing_subnet_returns_correct_data(sel
keyid=access_key,
subnet_id=subnet.id)
self.assertEqual(set(describe_subnet_results['subnet'].keys()),
{'id', 'cidr_block', 'availability_zone', 'tags'})
set(['id', 'cidr_block', 'availability_zone', 'tags']))

@mock_ec2
def test_that_describe_subnet_by_id_for_non_existent_subnet_returns_none(self):
Expand Down Expand Up @@ -772,7 +772,7 @@ def test_that_describe_subnet_by_name_for_existing_subnet_returns_correct_data(s
keyid=access_key,
subnet_name='test')
self.assertEqual(set(describe_subnet_results['subnet'].keys()),
{'id', 'cidr_block', 'availability_zone', 'tags'})
set(['id', 'cidr_block', 'availability_zone', 'tags']))

@mock_ec2
def test_that_describe_subnet_by_name_for_non_existent_subnet_returns_none(self):
Expand Down Expand Up @@ -802,7 +802,7 @@ def test_that_describe_subnets_by_id_for_existing_subnet_returns_correct_data(se
subnet_ids=[subnet1.id, subnet2.id])
self.assertEqual(len(describe_subnet_results['subnets']), 2)
self.assertEqual(set(describe_subnet_results['subnets'][0].keys()),
{'id', 'cidr_block', 'availability_zone', 'tags'})
set(['id', 'cidr_block', 'availability_zone', 'tags']))

@mock_ec2
def test_that_describe_subnets_by_name_for_existing_subnets_returns_correct_data(self):
Expand All @@ -819,7 +819,7 @@ def test_that_describe_subnets_by_name_for_existing_subnets_returns_correct_data
subnet_names=['subnet1', 'subnet2'])
self.assertEqual(len(describe_subnet_results['subnets']), 2)
self.assertEqual(set(describe_subnet_results['subnets'][0].keys()),
{'id', 'cidr_block', 'availability_zone', 'tags'})
set(['id', 'cidr_block', 'availability_zone', 'tags']))

@mock_ec2
def test_create_subnet_passes_availability_zone(self):
Expand Down

0 comments on commit c7472ff

Please sign in to comment.