diff options
author | boucherv <valentin.boucher@orange.com> | 2016-04-01 08:52:49 +0200 |
---|---|---|
committer | boucherv <valentin.boucher@orange.com> | 2016-04-01 08:52:49 +0200 |
commit | 56474387253f74f45222f11455477be011e58a60 (patch) | |
tree | ceeaa9b482848dceed8506a09edd5d102a738f3e /testcases/vIMS/CI | |
parent | 95500324d99b96dcf4e299089a98046efd2628f3 (diff) |
Bugfix result criteria
Change-Id: I5f5f7b88f1b42d2cecd0444339ee117da61ac2a1
Signed-off-by: boucherv <valentin.boucher@orange.com>
Diffstat (limited to 'testcases/vIMS/CI')
-rw-r--r-- | testcases/vIMS/CI/vIMS.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testcases/vIMS/CI/vIMS.py b/testcases/vIMS/CI/vIMS.py index 1a7d89f47..dbd98fa8d 100644 --- a/testcases/vIMS/CI/vIMS.py +++ b/testcases/vIMS/CI/vIMS.py @@ -1,4 +1,4 @@ -#!/usr/bin/python + #!/usr/bin/python # coding: utf8 ####################################################################### # @@ -253,7 +253,7 @@ def test_clearwater(): # - VNF deployed status = "failed" try: - if RESULTS['orchestrator']['duration'] > 0 and RESULT['vIMS']['duration'] > 0: + if RESULTS['orchestrator']['duration'] > 0 and RESULTS['vIMS']['duration'] > 0: status = "passed" except: logger.error("Unable to set test status") |