[Zope3-checkins] CVS: Zope3/src/zope/app/pluggableauth/tests -
authsetup.py:1.3 test_pluggableauth.py:1.3
Jim Fulton
jim at zope.com
Mon Mar 15 15:42:39 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/pluggableauth/tests
In directory cvs.zope.org:/tmp/cvs-serv3290/src/zope/app/pluggableauth/tests
Modified Files:
authsetup.py test_pluggableauth.py
Log Message:
Adapters and views are now registered with a single factory, not a
sequence of factories.
=== Zope3/src/zope/app/pluggableauth/tests/authsetup.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/pluggableauth/tests/authsetup.py:1.2 Sat Mar 13 10:21:26 2004
+++ Zope3/src/zope/app/pluggableauth/tests/authsetup.py Mon Mar 15 15:42:08 2004
@@ -38,7 +38,7 @@
ztapi.provideAdapter(IHTTPCredentials, ILoginPassword, BasicAuthAdapter)
ztapi.browserView(IPrincipalSource, "login",
- (PrincipalAuthenticationView,))
+ PrincipalAuthenticationView)
auth = setup.addService(sm, "PluggableAuthService",
PluggableAuthenticationService())
=== Zope3/src/zope/app/pluggableauth/tests/test_pluggableauth.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/pluggableauth/tests/test_pluggableauth.py:1.2 Sat Mar 13 10:21:26 2004
+++ Zope3/src/zope/app/pluggableauth/tests/test_pluggableauth.py Mon Mar 15 15:42:08 2004
@@ -51,7 +51,7 @@
ztapi.provideAdapter(IHTTPCredentials, ILoginPassword, BasicAuthAdapter)
ztapi.browserView(IPrincipalSource, "login",
- (PrincipalAuthenticationView,))
+ PrincipalAuthenticationView)
auth = setup.addService(sm, "TestPluggableAuthenticationService",
PluggableAuthenticationService())
More information about the Zope3-Checkins
mailing list