diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-07-16 00:28:35 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-07-16 00:28:35 +0200 |
commit | a4cd1413badcf85553f2f3f62aba364289746c0e (patch) | |
tree | 2897019e359b5dc80bc5ae72ceea322155c516a6 /tests/test-password.js | |
parent | 123513286f8baadb97c27468690b5bdf335dcecc (diff) | |
download | bugzilla-triage-a4cd1413badcf85553f2f3f62aba364289746c0e.tar.gz |
change {set,remove}Password to *Login
Diffstat (limited to 'tests/test-password.js')
-rw-r--r-- | tests/test-password.js | 6 |
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); }; |