Use oslotest base class instead of tempest tests

tempest-stress use the tempest.tests.base which is
internal to tempest and should not be used.

Change-Id: I40485ae1c4adc423ed42d374de3ece3e5c96de0c
This commit is contained in:
Ghanshyam Mann 2020-03-31 14:12:01 -05:00
parent 858fc6bf84
commit e945720621
1 changed files with 2 additions and 2 deletions

View File

@ -17,13 +17,13 @@ import shlex
import subprocess
from oslo_log import log as logging
from oslotest import base
from tempest.lib import exceptions
from tempest.tests import base
LOG = logging.getLogger(__name__)
class StressFrameworkTest(base.TestCase):
class StressFrameworkTest(base.BaseTestCase):
"""Basic test for the stress test framework."""
def _cmd(self, cmd, param):