From e09aebefed6171ebae91178d74dfbc08a8fa1dd2 Mon Sep 17 00:00:00 2001 From: Tetiana Lashchova Date: Tue, 29 Sep 2015 12:07:39 +0300 Subject: [PATCH] Add prefix 'test' to unit test module names Some unit tests are not executed since prefix 'test' is missed in module names. This patch renames such modules. Change-Id: I62660739bdcb9d5c94eacb186fcc79c3e07b0e8c --- .../helpers/{token_sanitizer_tests.py => test_token_sanitizer.py} | 0 .../unit/common/{is_different_tests.py => test_is_different.py} | 0 .../common/{traverse_helper_tests.py => test_traverse_helper.py} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename murano/tests/unit/common/helpers/{token_sanitizer_tests.py => test_token_sanitizer.py} (100%) rename murano/tests/unit/common/{is_different_tests.py => test_is_different.py} (100%) rename murano/tests/unit/common/{traverse_helper_tests.py => test_traverse_helper.py} (100%) diff --git a/murano/tests/unit/common/helpers/token_sanitizer_tests.py b/murano/tests/unit/common/helpers/test_token_sanitizer.py similarity index 100% rename from murano/tests/unit/common/helpers/token_sanitizer_tests.py rename to murano/tests/unit/common/helpers/test_token_sanitizer.py diff --git a/murano/tests/unit/common/is_different_tests.py b/murano/tests/unit/common/test_is_different.py similarity index 100% rename from murano/tests/unit/common/is_different_tests.py rename to murano/tests/unit/common/test_is_different.py diff --git a/murano/tests/unit/common/traverse_helper_tests.py b/murano/tests/unit/common/test_traverse_helper.py similarity index 100% rename from murano/tests/unit/common/traverse_helper_tests.py rename to murano/tests/unit/common/test_traverse_helper.py