diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-01-22 07:50:45 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-02-23 02:00:51 +0000 |
commit | fbd916ea2e0783c3beb517fd4c69f139eafe1688 (patch) | |
tree | 8a9c10ce050b575db0947d6e469f8b4e71adc8ef /functest/cli/commands/cli_testcase.py | |
parent | 03208634b25e61faebaa34e932e282a8f26c0ea4 (diff) |
Use new-style classes which inherit from object
JIRA: FUNCTEST-707
Change-Id: Ieaa888375136eddbbe003a24b32bf09fd0f92923
Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'functest/cli/commands/cli_testcase.py')
-rw-r--r-- | functest/cli/commands/cli_testcase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/cli/commands/cli_testcase.py b/functest/cli/commands/cli_testcase.py index b6566245..6644a0c2 100644 --- a/functest/cli/commands/cli_testcase.py +++ b/functest/cli/commands/cli_testcase.py @@ -19,7 +19,7 @@ import functest.utils.functest_utils as ft_utils import functest.utils.functest_vacation as vacation -class CliTestcase: +class CliTestcase(object): def __init__(self): self.tiers = tb.TierBuilder(CONST.INSTALLER_TYPE, |