Bug 1401528 - fix password failure xpcshell tests by switching from C-C's MockFactory to M-C's MockRegistrar. r=aceman

This commit is contained in:
Jorg K 2017-12-01 15:15:00 +01:00
Родитель ede1235553
Коммит 44c1e3e068
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -30,7 +30,8 @@
*/ */
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
Components.utils.import("resource://testing-common/mailnews/MockFactory.js"); const {MockRegistrar} =
Components.utils.import("resource://testing-common/MockRegistrar.jsm", {});
// Wrapper to the nsIPrompt interface. // Wrapper to the nsIPrompt interface.
// This allows the send code to attempt to display errors to the user without // This allows the send code to attempt to display errors to the user without
@ -252,9 +253,9 @@ var alertUtilsWindowWatcher = {
function registerAlertTestUtils() function registerAlertTestUtils()
{ {
MockFactory.register("@mozilla.org/embedcomp/window-watcher;1", MockRegistrar.register("@mozilla.org/embedcomp/window-watcher;1",
alertUtilsWindowWatcher); alertUtilsWindowWatcher);
MockFactory.register("@mozilla.org/embedcomp/prompt-service;1", MockRegistrar.register("@mozilla.org/embedcomp/prompt-service;1",
alertUtilsPromptService); alertUtilsPromptService);
} }