diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-05-23 02:42:18 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-05-23 07:10:21 +0000 |
commit | c969dbf25fb8d0b3c3c36f4b3b21959f93d34d01 (patch) | |
tree | 6107fc1d85ab680a27ae7a632dd48ec2699c535a /functest/ci | |
parent | 2d38d6ddfd88dd04fc3148984de6e633a545a456 (diff) |
Bugfix: fix two typos
1. In run_tests.py, test case name is shown before running:
logger.error(kwargs['test']) -> logger.info(kwargs['test'])
2. In tempest.py, Verication -> Verification
Change-Id: I117838cdb4b0f920c4cf855645d910e623e06868
Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'functest/ci')
-rwxr-xr-x | functest/ci/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py index 95353c87..8317df54 100755 --- a/functest/ci/run_tests.py +++ b/functest/ci/run_tests.py @@ -221,7 +221,7 @@ class Runner(object): try: if kwargs['test']: self.source_rc_file() - logger.error(kwargs['test']) + logger.debug("Test args: %s", kwargs['test']) if _tiers.get_tier(kwargs['test']): self.run_tier(_tiers.get_tier(kwargs['test'])) elif _tiers.get_test(kwargs['test']): |