From e945720621b27eb3ef7cd4eb83733804ea6eb9a6 Mon Sep 17 00:00:00 2001 From: Ghanshyam Mann Date: Tue, 31 Mar 2020 14:12:01 -0500 Subject: [PATCH] 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 --- tempest_stress/tests/stress/test_stress.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tempest_stress/tests/stress/test_stress.py b/tempest_stress/tests/stress/test_stress.py index 8f24e3e..a588b9c 100644 --- a/tempest_stress/tests/stress/test_stress.py +++ b/tempest_stress/tests/stress/test_stress.py @@ -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):