diff options
author | Periyasamy Palanisamy <periyasamy.palanisamy@ericsson.com> | 2018-02-23 15:42:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-02-23 15:42:05 +0000 |
commit | 43b29ad7ed13cd9bbcc2316b3809ba64a45ea42d (patch) | |
tree | 8e07660812b65c5a1779f532f70550f4f93f4010 | |
parent | 4e6758bb8d2501b7e050910f9351223976b20101 (diff) | |
parent | 97cff3c409ffff5abfbb341eff07a00c4f353941 (diff) |
Merge "Fixing return value in tempest test suite"
-rw-r--r-- | sdnvpn/test/functest/tempest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdnvpn/test/functest/tempest.py b/sdnvpn/test/functest/tempest.py index 5fca8cb..d34af0b 100644 --- a/sdnvpn/test/functest/tempest.py +++ b/sdnvpn/test/functest/tempest.py @@ -80,7 +80,7 @@ def main(): if int(failed) == 0: status = "PASS" else: - status = "FAILED" + status = "FAIL" return {"status": status, "details": results} except: |