From b5ced1899ff13796eb0836ca75fddd1c787d8650 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Tue, 23 May 2017 18:06:47 +0200 Subject: Rename the class TestSuiteRunner to Suite MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It conforms with [1]. [1] https://gerrit.opnfv.org/gerrit/#/c/35211/ Change-Id: I11bbdcd63a1691835fb7c6198549edbaf6b758a1 Signed-off-by: Cédric Ollivier --- functest/core/unit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'functest/core/unit.py') diff --git a/functest/core/unit.py b/functest/core/unit.py index efcef7b6..6d8b5879 100644 --- a/functest/core/unit.py +++ b/functest/core/unit.py @@ -18,14 +18,14 @@ import six from functest.core import testcase -class PyTestSuiteRunner(testcase.TestCase): +class Suite(testcase.TestCase): """ This superclass is designed to execute pre-configured unittest.TestSuite() objects """ def __init__(self, **kwargs): - super(PyTestSuiteRunner, self).__init__(**kwargs) + super(Suite, self).__init__(**kwargs) self.suite = None self.logger = logging.getLogger(__name__) -- cgit 1.2.3-korg