From dad2549c97e6ff33ce8e6b1fdc9c51dac08acc0a Mon Sep 17 00:00:00 2001 From: Tong Liu Date: Sat, 12 Mar 2016 05:43:55 +0000 Subject: [PATCH] Tempest: Use data_utils from tempest.lib data_utils module has been moved from tempest.common to tempest.lib.common in upstream tempest recently. Import data_utils from the tempest.lib to refelct this change. Change-Id: Id0a0f99376e51ff1c7e2d37ad4d68de3b80da258 --- vmware_nsx_tempest/tests/nsxv3/api/test_nsx_floating_ip.py | 2 +- vmware_nsx_tempest/tests/nsxv3/api/test_nsx_networks.py | 2 +- vmware_nsx_tempest/tests/nsxv3/api/test_nsx_routers.py | 2 +- vmware_nsx_tempest/tests/nsxv3/api/test_nsx_security_groups.py | 2 +- .../tests/nsxv3/scenario/test_multi_hv_network_ops.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_floating_ip.py b/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_floating_ip.py index a1b3e98fab..d742b50551 100644 --- a/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_floating_ip.py +++ b/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_floating_ip.py @@ -16,8 +16,8 @@ from oslo_log import log as logging from tempest.api.network import base -from tempest.common.utils import data_utils from tempest import config +from tempest.lib.common.utils import data_utils from tempest import test from vmware_nsx_tempest.services import nsxv3_client diff --git a/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_networks.py b/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_networks.py index 2abef653d5..451b86fea8 100644 --- a/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_networks.py +++ b/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_networks.py @@ -11,8 +11,8 @@ # under the License. from tempest.api.network import base -from tempest.common.utils import data_utils from tempest import config +from tempest.lib.common.utils import data_utils from tempest import test from vmware_nsx_tempest.services import nsxv3_client diff --git a/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_routers.py b/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_routers.py index ecc8e24cc7..1d35a50f70 100644 --- a/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_routers.py +++ b/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_routers.py @@ -13,8 +13,8 @@ # under the License. from tempest.api.network import base_routers as base -from tempest.common.utils import data_utils from tempest import config +from tempest.lib.common.utils import data_utils from tempest import test from vmware_nsx_tempest.services import nsxv3_client diff --git a/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_security_groups.py b/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_security_groups.py index 3a6d02cc4b..23e3386a8e 100644 --- a/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_security_groups.py +++ b/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_security_groups.py @@ -19,8 +19,8 @@ import six import time from tempest.api.network import base_security_groups as base -from tempest.common.utils import data_utils from tempest import config +from tempest.lib.common.utils import data_utils from tempest import test from vmware_nsx_tempest._i18n import _LI diff --git a/vmware_nsx_tempest/tests/nsxv3/scenario/test_multi_hv_network_ops.py b/vmware_nsx_tempest/tests/nsxv3/scenario/test_multi_hv_network_ops.py index fa6dda2b15..afca9e2e2c 100644 --- a/vmware_nsx_tempest/tests/nsxv3/scenario/test_multi_hv_network_ops.py +++ b/vmware_nsx_tempest/tests/nsxv3/scenario/test_multi_hv_network_ops.py @@ -16,8 +16,8 @@ import collections from oslo_log import log as logging -from tempest.common.utils import data_utils from tempest import config +from tempest.lib.common.utils import data_utils from tempest.scenario import manager from tempest import test