diff options
author | Qiu Tingting <qiutt@fujitsu.com> | 2022-05-21 10:02:56 +0800 |
---|---|---|
committer | Qiu Tingting <qiutt@fujitsu.com> | 2022-05-21 10:02:56 +0800 |
commit | 83d72abc853e9af39334b4fc12df98be9375e4f2 (patch) | |
tree | 0166b7312097bf87d12643f69148ba5c3067476a | |
parent | aa5fab53993f29311f1aef83488eb0f759dabca8 (diff) |
agl-test-framework: change order of parameter for write_date_to_json.
Signed-off-by: Qiu Tingting <qiutt@fujitsu.com>
Change-Id: Ia5cb70ac5ada8be10c0be530a24fb5d6537f7cf6
-rw-r--r-- | plugins/agl_test_report.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/agl_test_report.py b/plugins/agl_test_report.py index cee1853..19c6dd7 100644 --- a/plugins/agl_test_report.py +++ b/plugins/agl_test_report.py @@ -45,7 +45,7 @@ def get_summary(case_status): #Write the test result to a json file under the dir TMP_LOGS_DIR -def write_date_to_json(test_set_status,THIS_TEST,summary,case_status): +def write_date_to_json(THIS_TEST,test_set_status,summary,case_status): #The data that will be written into the json file data = { 'test_status': test_set_status, |