summaryrefslogtreecommitdiff
path: root/functional/tests/compute
diff options
context:
space:
mode:
authorDaniel Gonzalez <daniel@gonzalez-nothnagel.de>2016-04-28 15:15:12 -0500
committerSheel Rana <ranasheel2000@gmail.com>2016-04-29 08:33:45 +0000
commit9ec41c0397dbcf818513efd9bc92ad488b66ceca (patch)
tree92e5908bb491013ced250b5f15bcd208e409b6ee /functional/tests/compute
parentf1d14de6da5d0f61e34f9e6841e965439c85d629 (diff)
downloadpython-openstackclient-9ec41c0397dbcf818513efd9bc92ad488b66ceca.tar.gz
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
Diffstat (limited to 'functional/tests/compute')
-rw-r--r--functional/tests/compute/v2/test_keypair.py4
-rw-r--r--functional/tests/compute/v2/test_server.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/functional/tests/compute/v2/test_keypair.py b/functional/tests/compute/v2/test_keypair.py
index 80cd4b46..6bc5cdb7 100644
--- a/functional/tests/compute/v2/test_keypair.py
+++ b/functional/tests/compute/v2/test_keypair.py
@@ -14,8 +14,8 @@ import tempfile
from functional.common import test
-from tempest_lib.common.utils import data_utils
-from tempest_lib import exceptions
+from tempest.lib.common.utils import data_utils
+from tempest.lib import exceptions
class KeypairBase(test.TestCase):
diff --git a/functional/tests/compute/v2/test_server.py b/functional/tests/compute/v2/test_server.py
index 198bd56b..4309aeaa 100644
--- a/functional/tests/compute/v2/test_server.py
+++ b/functional/tests/compute/v2/test_server.py
@@ -12,11 +12,11 @@
import time
-from tempest_lib.common.utils import data_utils
+from tempest.lib.common.utils import data_utils
import testtools
from functional.common import test
-from tempest_lib import exceptions
+from tempest.lib import exceptions
class ServerTests(test.TestCase):