From 677c759b213e9d2676bd8c1c19e679d5eb7bec38 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Thu, 4 Apr 2019 13:13:26 +0900 Subject: [PATCH] Use openstack_dashboard.test.helpers.TestCase To fix the following error. TypeError: unhashable type: 'TestNeutron_taas_dashboard' Change-Id: I60e983baff48cf5bab73c5e89f03b6984ef62417 --- neutron_taas_dashboard/test/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neutron_taas_dashboard/test/base.py b/neutron_taas_dashboard/test/base.py index 2159808..6992aec 100644 --- a/neutron_taas_dashboard/test/base.py +++ b/neutron_taas_dashboard/test/base.py @@ -13,9 +13,9 @@ # License for the specific language governing permissions and limitations # under the License. -from oslotest import base +from openstack_dashboard.test import helpers -class TestCase(base.BaseTestCase): +class TestCase(helpers.TestCase): """Test case base class for all unit tests."""