summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/tests/unit/test_certDB_import_with_primary_password.js
diff options
context:
space:
mode:
Diffstat (limited to 'security/manager/ssl/tests/unit/test_certDB_import_with_primary_password.js')
-rw-r--r--security/manager/ssl/tests/unit/test_certDB_import_with_primary_password.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/security/manager/ssl/tests/unit/test_certDB_import_with_primary_password.js b/security/manager/ssl/tests/unit/test_certDB_import_with_primary_password.js
index ab1ad36fd2..07e360fffd 100644
--- a/security/manager/ssl/tests/unit/test_certDB_import_with_primary_password.js
+++ b/security/manager/ssl/tests/unit/test_certDB_import_with_primary_password.js
@@ -28,11 +28,11 @@ const gCertificateDialogs = {
trust.value = Ci.nsIX509CertDB.TRUSTED_EMAIL;
return true;
},
- setPKCS12FilePassword: (ctx, password) => {
+ setPKCS12FilePassword: () => {
// This is only relevant to exporting.
ok(false, "setPKCS12FilePassword() should not have been called");
},
- getPKCS12FilePassword: (ctx, password) => {
+ getPKCS12FilePassword: () => {
// We don't test anything that calls this method yet.
ok(false, "getPKCS12FilePassword() should not have been called");
},
@@ -47,7 +47,7 @@ var gMockPrompter = {
// This intentionally does not use arrow function syntax to avoid an issue
// where in the context of the arrow function, |this != gMockPrompter| due to
// how objects get wrapped when going across xpcom boundaries.
- promptPassword(dialogTitle, text, password, checkMsg, checkValue) {
+ promptPassword(dialogTitle, text, password, checkMsg) {
this.numPrompts++;
if (this.numPrompts > 1) {
// don't keep retrying a bad password