summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi NATSUME <natsume.takashi@lab.ntt.co.jp>2019-08-26 16:06:41 +0900
committerTakashi NATSUME <natsume.takashi@lab.ntt.co.jp>2019-08-26 16:18:32 +0900
commit6aae5b23112f166209afc0465427c7506ef37f7c (patch)
tree9c08fe8d898d879627161591206d06e55322f67f
parenta19253f8575220de2a836a47235e57e3ad017057 (diff)
downloadpython-novaclient-6aae5b23112f166209afc0465427c7506ef37f7c.tar.gz
Follow up for microversion 2.75
This is a follow-up for microversion 2.75 - Multiple API cleanup changes. The base class of the TestFlavorNovaClientV274 class is the TenantTestBase class. And the base class of the TenantTestBase class is the ClientTestBase class. It is not necessary to use the TenantTestBase class as the base class. So specify the ClientTestBase class directly. TrivialFix Change-Id: I2cb971f46ba697d9386ca61b7f51169f02b605ab
-rw-r--r--novaclient/tests/functional/v2/test_flavor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/novaclient/tests/functional/v2/test_flavor.py b/novaclient/tests/functional/v2/test_flavor.py
index 1458f0b5..cc25ad7f 100644
--- a/novaclient/tests/functional/v2/test_flavor.py
+++ b/novaclient/tests/functional/v2/test_flavor.py
@@ -13,7 +13,7 @@
from novaclient.tests.functional import base
-class TestFlavorNovaClientV274(base.TenantTestBase):
+class TestFlavorNovaClientV274(base.ClientTestBase):
"""Functional tests for flavors"""
COMPUTE_API_VERSION = "2.74"