diff options
author | valentin boucher <valentin.boucher@orange.com> | 2016-06-24 16:49:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-06-24 16:49:13 +0000 |
commit | 1f2d76cd3a39f8e26c441d7a9b6b2708062fccdd (patch) | |
tree | 3e9facc5ace22c3e9719f814f150a2401feb4293 /testcases/features | |
parent | 2318d1e4ba57f943cfb75c387012d9d4b6811c00 (diff) | |
parent | c632a09b4613bb1201cbd6b3d184f87fddb1abec (diff) |
Merge "bug fix: duplicate start_date var with different type"
Diffstat (limited to 'testcases/features')
-rw-r--r-- | testcases/features/promise.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testcases/features/promise.py b/testcases/features/promise.py index 7f034643..fe1547af 100644 --- a/testcases/features/promise.py +++ b/testcases/features/promise.py @@ -215,7 +215,7 @@ def main(): passes = json_data["stats"]["passes"] pending = json_data["stats"]["pending"] failures = json_data["stats"]["failures"] - start_time = json_data["stats"]["start"] + start_time_json = json_data["stats"]["start"] end_time = json_data["stats"]["end"] duration = float(json_data["stats"]["duration"]) / float(1000) @@ -233,7 +233,7 @@ def main(): " Duration:\t%s\n" "****************************************\n\n" % (suites, tests, passes, pending, failures, - start_time, end_time, duration)) + start_time_json, end_time, duration)) if args.report: stop_time = time.time() |