Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 /* Any copyright is dedicated to the Public Domain.
2 * http://creativecommons.org/publicdomain/zero/1.0/ */
4 "use strict";
6 const modules = [
7 "healthreporter.jsm",
8 "profile.jsm",
9 "providers.jsm",
10 ];
12 function run_test() {
13 for (let m of modules) {
14 let resource = "resource://gre/modules/services/healthreport/" + m;
15 Components.utils.import(resource, {});
16 }
18 Components.utils.import("resource://gre/modules/HealthReport.jsm", {});
19 }