Index: openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl,v diff -u -r1.17 -r1.18 --- openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl 4 Sep 2003 11:15:47 -0000 1.17 +++ openacs-4/packages/acs-authentication/tcl/test/acs-authentication-procs.tcl 4 Sep 2003 13:05:29 -0000 1.18 @@ -30,6 +30,7 @@ # Successful authentication array set auth_info \ [auth::authenticate \ + -no_cookie \ -username $username \ -password $password] @@ -40,6 +41,7 @@ array unset auth_info array set auth_info \ [auth::authenticate \ + -no_cookie \ -username $username \ -password "blabla"] @@ -50,6 +52,7 @@ array unset auth_info array set auth_info \ [auth::authenticate \ + -no_cookie \ -username $username \ -password ""] @@ -60,6 +63,7 @@ array unset auth_info array set auth_info \ [auth::authenticate \ + -no_cookie \ -username "blabla" \ -password $password] @@ -70,6 +74,7 @@ array unset auth_info array set auth_info \ [auth::authenticate \ + -no_cookie \ -username "" \ -password $password] @@ -80,6 +85,7 @@ array unset auth_info array set auth_info \ [auth::authenticate \ + -no_cookie \ -authority_id -123 \ -username $username \ -password $password] @@ -96,6 +102,7 @@ array unset auth_info array set auth_info \ [auth::authenticate \ + -no_cookie \ -username $username \ -password $password] @@ -309,7 +316,7 @@ } } -aa_register_case auth_password_recovver { +aa_register_case auth_password_recover { Test the auth::password::recover_password proc. @author Simon Carstensen