aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-07-16 00:28:35 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-07-16 00:28:35 +0200
commita4cd1413badcf85553f2f3f62aba364289746c0e (patch)
tree2897019e359b5dc80bc5ae72ceea322155c516a6 /tests
parent123513286f8baadb97c27468690b5bdf335dcecc (diff)
downloadbugzilla-triage-a4cd1413badcf85553f2f3f62aba364289746c0e.tar.gz
change {set,remove}Password to *Login
Diffstat (limited to 'tests')
-rw-r--r--tests/test-password.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-password.js b/tests/test-password.js
index e605dc4..e46ed9c 100644
--- a/tests/test-password.js
+++ b/tests/test-password.js
@@ -8,11 +8,11 @@ var testLogin = "testUser";
var testPass = "verySecret";
var testDomain = "http://www.example.com";
-exports.ensureSetPassword = function (test) {
- passMod.setPassword(testLogin, testPass,
+exports.ensurePasswordMachinery = function (test) {
+ passMod.setLogin(testLogin, testPass,
testDomain, BTSRealm);
test.assertEqual(passMod.getPassword(testLogin,
testDomain, BTSRealm), testPass, "");
- passMod.removePassword(testLogin, testPass,
+ passMod.removeLogin(testLogin, testPass,
testDomain, BTSRealm);
};