replace tempest_lib with tempest.lib

As using tempest-lib is deprecated we need to
use lib under the main tempest library.

Change-Id: I0d3621bddf9d74818b96812292beed5746c8e794
Closes-Bug: #1572089
This commit is contained in:
Waldemar Znoinski 2016-04-19 15:41:24 +01:00
parent a87391af68
commit fce1b57553
3 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@
# under the License.
import libvirt
from tempest_lib.common.utils import data_utils
from tempest_lib import decorators
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
import testtools
import xml.etree.ElementTree as ET

View File

@ -18,8 +18,8 @@ import subprocess
from tempest import clients
from tempest.common import credentials_factory as common_creds
from tempest.common import waiters
from tempest.lib.common.utils import data_utils
from tempest.scenario import manager
from tempest_lib.common.utils import data_utils
# Using 2M hugepages

View File

@ -19,10 +19,10 @@ from oslo_concurrency import processutils
from oslo_log import log as logging
from tempest import config
from tempest.lib.common.utils import data_utils
from tempest.scenario import manager
from tempest.scenario import utils as test_utils
from tempest import test
from tempest_lib.common.utils import data_utils
CONF = config.CONF