summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Sanabria <asanabria@linuxdynasty.org>2016-08-04 13:10:11 -0700
committerAllen Sanabria <asanabria@linuxdynasty.org>2016-08-04 13:10:11 -0700
commit461553bda80dafc33c006f58640cf1254ae057d7 (patch)
treea3b22253df21160e23c00936cd78165ed23dcfd8
parent123c70546e9cbe9fd2030c898d05b40f46b1129b (diff)
downloadansible-modules-extras-461553bda80dafc33c006f58640cf1254ae057d7.tar.gz
updated tests to reflect dict vs list
-rw-r--r--test/unit/cloud/amazon/test_ec2_vpc_nat_gateway.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/cloud/amazon/test_ec2_vpc_nat_gateway.py b/test/unit/cloud/amazon/test_ec2_vpc_nat_gateway.py
index e2d35734..7c4f163a 100644
--- a/test/unit/cloud/amazon/test_ec2_vpc_nat_gateway.py
+++ b/test/unit/cloud/amazon/test_ec2_vpc_nat_gateway.py
@@ -329,7 +329,7 @@ class AnsibleEc2VpcNatGatewayFunctions(unittest.TestCase):
)
)
self.assertFalse(success)
- self.assertEqual(gws, [])
+ self.assertEqual(gws, {})
def test_gateway_in_subnet_exists_with_allocation_id(self):
client = boto3.client('ec2', region_name=aws_region)