diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-01-26 14:23:10 +0100 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-01-26 13:31:38 +0000 |
commit | 5ebc6d36dcb058ee4f8ea9ae7865f07bf8cfd895 (patch) | |
tree | a493f287f04a445b4c8f50a59809c6f918053c8f /testcases/vPing/CI/libraries/vPing.py | |
parent | 9492365faf0d6d4901694cdfb04dd7edbf00e8b3 (diff) |
Replace 'No vPing detected' by a better understandable message
Some people got confused about that message although the test succeded
Change-Id: I9bdbb5545f06e85805f29b3dfca6156da86c3ffb
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
(cherry picked from commit c208b3c1104fc210d73eabf6361efbd3ea62e265)
Diffstat (limited to 'testcases/vPing/CI/libraries/vPing.py')
-rw-r--r-- | testcases/vPing/CI/libraries/vPing.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testcases/vPing/CI/libraries/vPing.py b/testcases/vPing/CI/libraries/vPing.py index dc2d2abec..0b09b6d4f 100644 --- a/testcases/vPing/CI/libraries/vPing.py +++ b/testcases/vPing/CI/libraries/vPing.py @@ -412,7 +412,6 @@ def main(): name=NAME_VM_2, flavor=flavor, image=image, - # nics = [{"net-id": network_id, "v4-fixed-ip": IP_2}], nics=[{"port-id": port_id2}], userdata=u ) @@ -459,7 +458,7 @@ def main(): " Waiting a bit...") metadata_tries += 1 else: - logger.debug("No ping detected yet...") + logger.debug("Pinging %s. Waiting for response..." % IP_2) sec += 1 test_status = "NOK" |