summaryrefslogtreecommitdiff
path: root/services/healthreport
diff options
context:
space:
mode:
Diffstat (limited to 'services/healthreport')
-rw-r--r--services/healthreport/healthreporter.jsm4
-rw-r--r--services/healthreport/providers.jsm2
-rw-r--r--services/healthreport/tests/xpcshell/test_healthreporter.js2
3 files changed, 4 insertions, 4 deletions
diff --git a/services/healthreport/healthreporter.jsm b/services/healthreport/healthreporter.jsm
index 6d299a251..b3fcc83e8 100644
--- a/services/healthreport/healthreporter.jsm
+++ b/services/healthreport/healthreporter.jsm
@@ -249,7 +249,7 @@ HealthReporterState.prototype = Object.freeze({
/**
* This is the abstract base class of `HealthReporter`. It exists so that
* we can sanely divide work on platforms where control of Firefox Health
- * Report is outside of Gecko (e.g., Android).
+ * Report is outside of Goanna (e.g., Android).
*/
function AbstractHealthReporter(branch, policy, sessionRecorder) {
if (!branch.endsWith(".")) {
@@ -898,7 +898,7 @@ AbstractHealthReporter.prototype = Object.freeze({
let o = {
version: 2,
thisPingDate: pingDateString,
- geckoAppInfo: this.obtainAppInfo(this._log),
+ goannaAppInfo: this.obtainAppInfo(this._log),
data: {last: {}, days: {}},
};
diff --git a/services/healthreport/providers.jsm b/services/healthreport/providers.jsm
index 6409723bf..2778757ae 100644
--- a/services/healthreport/providers.jsm
+++ b/services/healthreport/providers.jsm
@@ -215,7 +215,7 @@ AppInfoProvider.prototype = Object.freeze({
}.bind(this);
// Services.appInfo should always be defined for any reasonably behaving
- // Gecko app. If it isn't, we insert a empty string sentinel value.
+ // Goanna app. If it isn't, we insert a empty string sentinel value.
let ai;
try {
ai = Services.appinfo;
diff --git a/services/healthreport/tests/xpcshell/test_healthreporter.js b/services/healthreport/tests/xpcshell/test_healthreporter.js
index 2c4f1f234..8072a20e0 100644
--- a/services/healthreport/tests/xpcshell/test_healthreporter.js
+++ b/services/healthreport/tests/xpcshell/test_healthreporter.js
@@ -786,7 +786,7 @@ add_task(function test_basic_appinfo() {
verify(reporter.obtainAppInfo());
let payload = yield reporter.collectAndObtainJSONPayload(true);
do_check_eq(payload["version"], 2);
- verify(payload["geckoAppInfo"]);
+ verify(payload["goannaAppInfo"]);
} finally {
reporter._shutdown();
}