diff options
author | CNlukai <lukai1@huawei.com> | 2016-01-27 18:18:15 +0800 |
---|---|---|
committer | Jose Lausuch <jose.lausuch@ericsson.com> | 2016-01-27 10:24:34 +0000 |
commit | 668102a5ba79fe4ac46931697cff132e67867880 (patch) | |
tree | a61cf5c73349be6cffd3ca71b29f992f3b2b6b51 /testcases/vPing | |
parent | 1840480f5601a4681f0fa49963757820039ac03b (diff) |
FUNCTEST-128
Modify the ssh output match
Change-Id: Ic21823781aa77bdc216dac4c048cd04884516a53
Signed-off-by: CNlukai <lukai1@huawei.com>
(cherry picked from commit 77e92f96dd56659d14d496d86d3814ea69fb2b3d)
Diffstat (limited to 'testcases/vPing')
-rw-r--r-- | testcases/vPing/CI/libraries/vPing2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testcases/vPing/CI/libraries/vPing2.py b/testcases/vPing/CI/libraries/vPing2.py index 7714dfcb8..1a9a531c3 100644 --- a/testcases/vPing/CI/libraries/vPing2.py +++ b/testcases/vPing/CI/libraries/vPing2.py @@ -510,7 +510,7 @@ def main(): # print "--"+console_log # report if the test is failed for line in output: - if "vPing OK" in output: + if "vPing OK" in line: logger.info("vPing detected!") # we consider start time at VM1 booting |