Rename the test class so it will be PyCharm friendly

In order to run from PyCharm test classed need to end or start
with the word test

Change-Id: I5715d0602758cb4a0129ce2fc4c35d3e3f46cb70
This commit is contained in:
Eyal 2019-07-30 17:36:49 +03:00
parent ae72a810af
commit 345e0706e5

View File

@ -32,7 +32,7 @@ MISTRAL_HTTPS_URL = MISTRAL_HTTP_URL.replace('http', 'https')
PROFILER_HMAC_KEY = 'SECRET_HMAC_KEY'
class BaseClientTests(base.BaseTestCase):
class BaseClientTest(base.BaseTestCase):
@staticmethod
def setup_keystone_mock(session_mock):