Fix nsx-p admin utility file location

Change-Id: Iae5aab222d7effb60a86e2f7097309705ebc02a3
This commit is contained in:
asarfaty 2020-12-07 10:02:11 +02:00
parent 8d34c6ae3b
commit cfee3b2105
3 changed files with 4 additions and 1 deletions

View File

@ -86,6 +86,7 @@ commands =
stestr run {posargs}
whitelist_externals =
stestr
setenv = EDITOR=vi
[testenv:py36-dev]
basepython = python3.6

View File

@ -23,7 +23,8 @@ from vmware_nsx.shell import resources as shell
@admin_utils.output_header
def cleanup_db_mappings(resource, event, trigger, **kwargs):
"""Delete all entries from nsx-t mapping tables in DB"""
return migration.cleanup_db_mappings(resource, event, trigger, **kwargs)
return migration.MP2Policy_cleanup_db_mappings(
resource, event, trigger, **kwargs)
registry.subscribe(cleanup_db_mappings,

View File

@ -394,6 +394,7 @@ class TestNsxpAdminUtils(AbstractTestAdminUtils,
return 'nsxp'
def _init_mock_plugin(self):
super(TestNsxpAdminUtils, self)._init_mock_plugin()
self._plugin = nsxp_utils.NsxPolicyPluginWrapper()
def test_nsxp_resources(self):