vmware-nsx/vmware_nsx_tempest/tests/base.py
Devang Doshi 6d6eb4aea8 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 <module>
    from oslotest import base
ImportError: No module named oslotest

Change-Id: Ibda31e166db20ecb3422897c5c8194f57a3ceca6
2016-09-11 09:14:02 -07:00

24 lines
797 B
Python

# -*- coding: utf-8 -*-
# Copyright 2010-2011 OpenStack Foundation
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from tempest.lib import base
class TestCase(base.BaseTestCase):
"""Test case base class for all unit tests."""