[Zodb-checkins] CVS: ZODB3/ZEO/tests - testAuth.py:1.1.2.10
Jeremy Hylton
jeremy at zope.com
Fri May 30 11:56:15 EDT 2003
Update of /cvs-repository/ZODB3/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv15099
Modified Files:
Tag: ZODB3-auth-branch
testAuth.py
Log Message:
Remove debugging prints. Normalize concrete test classes.
=== ZODB3/ZEO/tests/testAuth.py 1.1.2.9 => 1.1.2.10 ===
--- ZODB3/ZEO/tests/testAuth.py:1.1.2.9 Thu May 29 19:33:26 2003
+++ ZODB3/ZEO/tests/testAuth.py Fri May 30 10:56:14 2003
@@ -69,7 +69,6 @@
# seems to be needed before and after creating the storage
self._storage = self.openClientStorage(wait=0, username="foo",
password="bar", realm=self.realm)
- print "ocs return", self._storage
self.wait()
self.assert_(self._storage._connection)
@@ -81,16 +80,15 @@
password="noogie",
realm=self.realm)
self.wait()
- print self._storage
# If the test established a connection, then it failed.
self.failIf(self._storage._connection)
class PlainTextAuth(AuthTest):
import ZEO.tests.auth_plaintext
- protocol = 'plaintext'
- database = 'authdb.sha'
- realm = "Plaintext Realm"
+ protocol = "plaintext"
+ database = "authdb.sha"
dbclass = ZEO.tests.auth_plaintext.Database
+ realm = "Plaintext Realm"
class DigestAuth(AuthTest):
import ZEO.auth.auth_digest
More information about the Zodb-checkins
mailing list