Switch to use stable data_utils

Tempest provides stable library interfaces under tempest.lib.
This patch switches to use it for data_utils.

Change-Id: I10b5877b12e2c28515b49c8b9221590cb7aa4f30
This commit is contained in:
Ken'ichi Ohmichi 2017-03-07 12:53:21 -08:00
parent 60ad8b0afc
commit 55e63d4e2a
3 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from tempest.common.utils import data_utils
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.lib import exceptions as lib_exc
import tempest.test

View File

@ -10,7 +10,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from tempest.common.utils import data_utils
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
from tempest.lib import exceptions as lib_exc

View File

@ -13,7 +13,7 @@
# under the License.
from oslo_utils import uuidutils
from tempest.common.utils import data_utils
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
from tempest.lib import exceptions as lib_exc
from tempest import test