From 6d6eb4aea82d1c125fc1243b36d231cad8b2f235 Mon Sep 17 00:00:00 2001 From: Devang Doshi Date: Sun, 11 Sep 2016 09:14:02 -0700 Subject: [PATCH] Tempest: Fixed error with nonexist module - Fixed below error while running testr tool - Module changed from oslotest to tempest.lib Error: File "/opt/stack/vmware-nsx/vmware_nsx_tempest/tests/base.py", line 18, in from oslotest import base ImportError: No module named oslotest Change-Id: Ibda31e166db20ecb3422897c5c8194f57a3ceca6 --- vmware_nsx_tempest/tests/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmware_nsx_tempest/tests/base.py b/vmware_nsx_tempest/tests/base.py index 1c30cdb56e..56b1878f62 100644 --- a/vmware_nsx_tempest/tests/base.py +++ b/vmware_nsx_tempest/tests/base.py @@ -15,7 +15,7 @@ # License for the specific language governing permissions and limitations # under the License. -from oslotest import base +from tempest.lib import base class TestCase(base.BaseTestCase):