add super call for tearDownClass

Change-Id: Iac11fe98a7dd053d5a7dbd640f7d76e04697dbf1
This commit is contained in:
Eyal 2019-02-27 17:39:13 +02:00
parent 72489fd839
commit 8b25bb2ce2
2 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,7 @@ class TestRca(BaseRcaTest):
# noinspection PyPep8Naming
@classmethod
def tearDownClass(cls):
super(TestRca, cls).tearDownClass()
if cls._template is not None:
v_utils.delete_template(cls._template['uuid'])

View File

@ -47,6 +47,7 @@ class TestValidate(BaseTemplateTest):
@classmethod
def tearDownClass(cls):
super(TestValidate, cls).tearDownClass()
if cls._template is not None:
v_utils.delete_template(cls._template['uuid'])