diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-11-24 18:25:52 +0100 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-11-25 15:09:35 +0100 |
commit | 165ff17205d99b18df36e5ac6f34ede858e3da17 (patch) | |
tree | 3199a34b651204cd62bdc78b5c5fc19c73ca3f02 /functest/opnfv_tests/features/domino.py | |
parent | 96aef41089d2c62913320028dd9618197d0e75c5 (diff) |
file/dir renaming for consistency
JIRA: FUNCTEST-579
Change-Id: Iaa545db70bfb76770df0a3d17871e29ce518ff2d
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'functest/opnfv_tests/features/domino.py')
-rwxr-xr-x | functest/opnfv_tests/features/domino.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/functest/opnfv_tests/features/domino.py b/functest/opnfv_tests/features/domino.py index 2deeb4c4..30d33a13 100755 --- a/functest/opnfv_tests/features/domino.py +++ b/functest/opnfv_tests/features/domino.py @@ -24,13 +24,13 @@ import functest.utils.functest_utils as ft_utils import functest.utils.functest_constants as ft_constants -class DominoCases(TestCasesBase.TestCasesBase): +class DominoTests(TestCasesBase.TestCasesBase): DOMINO_REPO = ft_constants.DOMINO_REPO RESULTS_DIR = ft_constants.FUNCTEST_RESULTS_DIR logger = ft_logger.Logger("domino").getLogger() def __init__(self): - super(DominoCases, self).__init__() + super(DominoTests, self).__init__() self.project_name = "domino" self.case_name = "domino-multinode" @@ -72,7 +72,7 @@ if __name__ == '__main__': help="Create json result file", action="store_true") args = vars(parser.parse_args()) - domino = DominoCases() + domino = DominoTests() try: result = domino.main(**args) if result != TestCasesBase.TestCasesBase.EX_OK: |