This is an automated email from the ASF dual-hosted git repository.
pmouawad pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new 2289ac9 Bug 64824: Dashboard/HTML Report: Rename KO to FAIL
2289ac9 is described below
commit 2289ac9e4fd9812debb2111960cb3e9277e63ef5
Author: pmouawad <[email protected]>
AuthorDate: Sun Oct 18 15:38:57 2020 +0200
Bug 64824: Dashboard/HTML Report: Rename KO to FAIL
---
bin/report-template/content/js/dashboard.js.fmkr | 4 ++--
.../main/resources/org/apache/jmeter/resources/messages.properties | 2 +-
xdocs/changes.xml | 1 +
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/bin/report-template/content/js/dashboard.js.fmkr
b/bin/report-template/content/js/dashboard.js.fmkr
index 31836ad..04a6255 100644
--- a/bin/report-template/content/js/dashboard.js.fmkr
+++ b/bin/report-template/content/js/dashboard.js.fmkr
@@ -136,12 +136,12 @@ $(document).ready(function() {
var data = ${requestsSummary!"{}"};
var dataset = [
{
- "label" : "KO",
+ "label" : "FAIL",
"data" : data.KoPercent,
"color" : "#FF6347"
},
{
- "label" : "OK",
+ "label" : "PASS",
"data" : data.OkPercent,
"color" : "#9ACD32"
}];
diff --git
a/src/core/src/main/resources/org/apache/jmeter/resources/messages.properties
b/src/core/src/main/resources/org/apache/jmeter/resources/messages.properties
index b91f1ee..53f57b1 100644
---
a/src/core/src/main/resources/org/apache/jmeter/resources/messages.properties
+++
b/src/core/src/main/resources/org/apache/jmeter/resources/messages.properties
@@ -976,7 +976,7 @@ reportgenerator_summary_errors_rate_all=% in all samples
reportgenerator_summary_errors_rate_error=% in errors
reportgenerator_summary_errors_type=Type of error
reportgenerator_summary_statistics_count=#Samples
-reportgenerator_summary_statistics_error_count=KO
+reportgenerator_summary_statistics_error_count=FAIL
reportgenerator_summary_statistics_error_percent=Error %
reportgenerator_summary_statistics_kbytes=Received
reportgenerator_summary_statistics_sent_kbytes=Sent
diff --git a/xdocs/changes.xml b/xdocs/changes.xml
index dd39a2a..7deb6ca 100644
--- a/xdocs/changes.xml
+++ b/xdocs/changes.xml
@@ -113,6 +113,7 @@ applications when JMeter is starting up.</p>
<h3>Report / Dashboard</h3>
<ul>
+ <li><bug>64824</bug>Dashboard/HTML Report: Rename KO to FAIL</li>
</ul>
<h3>General</h3>