diff options
Diffstat (limited to '3rd_party/static/testapi-ui/components')
-rw-r--r-- | 3rd_party/static/testapi-ui/components/home/home.html | 2 | ||||
-rw-r--r-- | 3rd_party/static/testapi-ui/components/results-report/resultsReportController.js | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/3rd_party/static/testapi-ui/components/home/home.html b/3rd_party/static/testapi-ui/components/home/home.html index e921713..d12a530 100644 --- a/3rd_party/static/testapi-ui/components/home/home.html +++ b/3rd_party/static/testapi-ui/components/home/home.html @@ -44,7 +44,7 @@ <div class="panel-heading"> <div class="panel-title"> <a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo"> - Release 2018.08 + Release 2018.09 </a> </div> </div> diff --git a/3rd_party/static/testapi-ui/components/results-report/resultsReportController.js b/3rd_party/static/testapi-ui/components/results-report/resultsReportController.js index 3c5d0c0..8cec126 100644 --- a/3rd_party/static/testapi-ui/components/results-report/resultsReportController.js +++ b/3rd_party/static/testapi-ui/components/results-report/resultsReportController.js @@ -189,11 +189,11 @@ var sub_case_list = get_sub_case_list_2018_01(result_resp.data); extend(sub_case_list); } - else if(ctrl.version == '2018.08') { - // OVP 2018.08 and later results store all results in a single json structure: + else if(ctrl.version == '2018.09') { + // OVP 2018.09 and later results store all results in a single json structure: // Looping over all test cases of this individual test run angular.forEach(result_resp.data.testcases_list, function(testcase, index){ - var sub_case_list = get_sub_case_list_2018_08(testcase) + var sub_case_list = get_sub_case_list_2018_09(testcase) extend(sub_case_list) }); } @@ -253,7 +253,7 @@ return case_list; } - function get_sub_case_list_2018_08(result) { + function get_sub_case_list_2018_09(result) { var case_list = []; if(result.sub_testcase.length == 0 && result.result == "PASS") { case_list.push(result.name); |