Skip to content

Commit 9ec41c0

Browse files
gonzolinoranasheel2000
authored andcommitted
Replace tempest-lib with tempest.lib
tempest-lib is deprecated, so replace it with tempest.lib. Co-Authored-By: Sheel Rana <ranasheel2000@gmail.com> Change-Id: I0495eba110bb7581623fbcf49dc63a27e9cb6d64 Closes-Bug: #1553047
1 parent f1d14de commit 9ec41c0

17 files changed

Lines changed: 22 additions & 22 deletions

functional/common/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
import testtools
1818

1919
import six
20-
from tempest_lib.cli import output_parser
21-
from tempest_lib import exceptions
20+
from tempest.lib.cli import output_parser
21+
from tempest.lib import exceptions
2222

2323

2424
COMMON_DIR = os.path.dirname(os.path.abspath(__file__))

functional/tests/compute/v2/test_keypair.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
from functional.common import test
1616

17-
from tempest_lib.common.utils import data_utils
18-
from tempest_lib import exceptions
17+
from tempest.lib.common.utils import data_utils
18+
from tempest.lib import exceptions
1919

2020

2121
class KeypairBase(test.TestCase):

functional/tests/compute/v2/test_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212

1313
import time
1414

15-
from tempest_lib.common.utils import data_utils
15+
from tempest.lib.common.utils import data_utils
1616
import testtools
1717

1818
from functional.common import test
19-
from tempest_lib import exceptions
19+
from tempest.lib import exceptions
2020

2121

2222
class ServerTests(test.TestCase):

functional/tests/identity/v2/test_identity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# License for the specific language governing permissions and limitations
1111
# under the License.
1212

13-
from tempest_lib.common.utils import data_utils
13+
from tempest.lib.common.utils import data_utils
1414

1515
from functional.common import test
1616

functional/tests/identity/v2/test_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# License for the specific language governing permissions and limitations
1111
# under the License.
1212

13-
from tempest_lib.common.utils import data_utils
13+
from tempest.lib.common.utils import data_utils
1414

1515
from functional.tests.identity.v2 import test_identity
1616

functional/tests/identity/v2/test_user.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
# License for the specific language governing permissions and limitations
1111
# under the License.
1212

13-
from tempest_lib.common.utils import data_utils
14-
from tempest_lib import exceptions
13+
from tempest.lib.common.utils import data_utils
14+
from tempest.lib import exceptions
1515

1616
from functional.tests.identity.v2 import test_identity
1717

functional/tests/identity/v3/test_domain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
# License for the specific language governing permissions and limitations
1111
# under the License.
1212

13-
from tempest_lib.common.utils import data_utils
14-
from tempest_lib import exceptions
13+
from tempest.lib.common.utils import data_utils
14+
from tempest.lib import exceptions
1515

1616
from functional.tests.identity.v3 import test_identity
1717

functional/tests/identity/v3/test_endpoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# License for the specific language governing permissions and limitations
1111
# under the License.
1212

13-
from tempest_lib.common.utils import data_utils
13+
from tempest.lib.common.utils import data_utils
1414

1515
from functional.tests.identity.v3 import test_identity
1616

functional/tests/identity/v3/test_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# License for the specific language governing permissions and limitations
1111
# under the License.
1212

13-
from tempest_lib.common.utils import data_utils
13+
from tempest.lib.common.utils import data_utils
1414

1515
from functional.tests.identity.v3 import test_identity
1616

functional/tests/identity/v3/test_identity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
import os
1414

15-
from tempest_lib.common.utils import data_utils
15+
from tempest.lib.common.utils import data_utils
1616

1717
from functional.common import test
1818

0 commit comments

Comments
 (0)