diff --git a/tempest_stress/actions/server_create_destroy.py b/tempest_stress/actions/server_create_destroy.py index ce82d5c..2a1a792 100644 --- a/tempest_stress/actions/server_create_destroy.py +++ b/tempest_stress/actions/server_create_destroy.py @@ -12,9 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -from tempest.common.utils import data_utils from tempest.common import waiters from tempest import config +from tempest.lib.common.utils import data_utils import tempest_stress.stressaction as stressaction diff --git a/tempest_stress/actions/ssh_floating.py b/tempest_stress/actions/ssh_floating.py index 8d654ce..deb2ebd 100644 --- a/tempest_stress/actions/ssh_floating.py +++ b/tempest_stress/actions/ssh_floating.py @@ -13,9 +13,9 @@ import socket import subprocess -from tempest.common.utils import data_utils from tempest.common import waiters from tempest import config +from tempest.lib.common.utils import data_utils from tempest.lib.common.utils import test_utils import tempest_stress.stressaction as stressaction diff --git a/tempest_stress/actions/volume_attach_delete.py b/tempest_stress/actions/volume_attach_delete.py index f3919fc..c9ea56f 100644 --- a/tempest_stress/actions/volume_attach_delete.py +++ b/tempest_stress/actions/volume_attach_delete.py @@ -11,9 +11,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -from tempest.common.utils import data_utils from tempest.common import waiters from tempest import config +from tempest.lib.common.utils import data_utils import tempest_stress.stressaction as stressaction diff --git a/tempest_stress/actions/volume_attach_verify.py b/tempest_stress/actions/volume_attach_verify.py index 06d6035..cc15d77 100644 --- a/tempest_stress/actions/volume_attach_verify.py +++ b/tempest_stress/actions/volume_attach_verify.py @@ -12,10 +12,10 @@ import re -from tempest.common.utils import data_utils from tempest.common.utils.linux import remote_client from tempest.common import waiters from tempest import config +from tempest.lib.common.utils import data_utils from tempest.lib.common.utils import test_utils import tempest_stress.stressaction as stressaction diff --git a/tempest_stress/actions/volume_create_delete.py b/tempest_stress/actions/volume_create_delete.py index 2ec3115..3782267 100644 --- a/tempest_stress/actions/volume_create_delete.py +++ b/tempest_stress/actions/volume_create_delete.py @@ -10,8 +10,8 @@ # See the 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 import tempest_stress.stressaction as stressaction diff --git a/tempest_stress/driver.py b/tempest_stress/driver.py index 735bdbb..ec89f8a 100644 --- a/tempest_stress/driver.py +++ b/tempest_stress/driver.py @@ -22,11 +22,11 @@ from oslo_utils import importutils import six from tempest import clients from tempest.common import credentials_factory as credentials -from tempest.common.utils import data_utils from tempest import config from tempest import exceptions from tempest.lib.common import cred_client from tempest.lib.common import ssh +from tempest.lib.common.utils import data_utils from tempest_stress import cleanup from tempest_stress import config as stress_cfg