From a4cd1413badcf85553f2f3f62aba364289746c0e Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Fri, 16 Jul 2010 00:28:35 +0200 Subject: change {set,remove}Password to *Login --- tests/test-password.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') 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); }; -- cgit