typo fixes in neutronng state
Change-Id: I1e050e96cf54baa9c62912c80adf21c485e31d3a
diff --git a/_states/neutronng.py b/_states/neutronng.py
index 90ba36d..67a088c 100644
--- a/_states/neutronng.py
+++ b/_states/neutronng.py
@@ -56,7 +56,7 @@
'connection_user': user,
'connection_password': password,
'connection_tenant': tenant,
- 'connection_auth_url': auth_url
+ 'connection_auth_url': auth_url,
'connection_endpoint_type': endpoint_type
}
@@ -103,7 +103,7 @@
network_arguments.update(connection_args)
_neutron_module_call('create_network', **network_arguments)
existing_networks = _neutron_module_call(
- 'list_networks', **connection_args)
+ 'list_networks',name=name, **connection_args)
for network in existing_networks:
if network.get(name) == name:
existing_network = network