summaryrefslogtreecommitdiffstats
path: root/snaps/openstack/utils/tests/neutron_utils_tests.py
diff options
context:
space:
mode:
authorSteven Pisarski <s.pisarski@cablelabs.com>2017-08-08 14:16:16 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-08-08 14:16:16 +0000
commitc52637e0f7e3a11b9ce39aa28ab16ffa57ce5e3c (patch)
tree23011eec4cc3a7cccf0586d29b6e90f88bf69eb3 /snaps/openstack/utils/tests/neutron_utils_tests.py
parent0428c2d9e46f4ddd4a0458dbf8a48065eacabe66 (diff)
parent8d71b60aa3fc785627b488383c17ef30a3838030 (diff)
Merge "Refactored neutron_utils#get_router_by_name() to get_router()"
Diffstat (limited to 'snaps/openstack/utils/tests/neutron_utils_tests.py')
-rw-r--r--snaps/openstack/utils/tests/neutron_utils_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/snaps/openstack/utils/tests/neutron_utils_tests.py b/snaps/openstack/utils/tests/neutron_utils_tests.py
index 6929c4b..f6fc2bb 100644
--- a/snaps/openstack/utils/tests/neutron_utils_tests.py
+++ b/snaps/openstack/utils/tests/neutron_utils_tests.py
@@ -828,7 +828,7 @@ def validate_router(neutron, name, exists):
:param exists: Whether or not the network name should exist or not
:return: True/False
"""
- router = neutron_utils.get_router_by_name(neutron, name)
+ router = neutron_utils.get_router(neutron, router_name=name)
if exists and router:
return True
return False