diff options
author | Matt A. Tobin <email@mattatobin.com> | 2022-04-18 17:01:41 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2022-04-18 17:01:41 -0500 |
commit | be1f005cffbb29b815a7aee659fb05bb32cb9793 (patch) | |
tree | 4c86c90ef347ab706efb0cbea76d0e63762ef84d /dom | |
parent | 94cdb9cf08e0848afc901424498c4be5a2ae6d40 (diff) | |
download | aura-central-be1f005cffbb29b815a7aee659fb05bb32cb9793.tar.gz |
Issue #10 - Move Weave CommonUtils to its own JSM
Diffstat (limited to 'dom')
-rw-r--r-- | dom/tests/mochitest/ajax/offline/offlineTests.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/tests/mochitest/ajax/offline/offlineTests.js b/dom/tests/mochitest/ajax/offline/offlineTests.js index f239cd574..2aaf933e6 100644 --- a/dom/tests/mochitest/ajax/offline/offlineTests.js +++ b/dom/tests/mochitest/ajax/offline/offlineTests.js @@ -3,7 +3,7 @@ var Cc = SpecialPowers.Cc; var Ci = SpecialPowers.Ci; var Cu = SpecialPowers.Cu; var LoadContextInfo = Cc["@mozilla.org/load-context-info-factory;1"].getService(Ci.nsILoadContextInfoFactory); -var CommonUtils = Cu.import("resource://services-common/utils.js", {}).CommonUtils; +var CommonUtils = Cu.import("resource://gre/CommonUtils.jsm", {}).CommonUtils; const kNetBase = 2152398848; // 0x804B0000 var NS_ERROR_CACHE_KEY_NOT_FOUND = kNetBase + 61; |