[Zope-CVS] CVS: Packages/pypes/pypes/tests - test_identity.py:1.15
Casey Duncan
casey at zope.com
Mon Apr 12 22:24:34 EDT 2004
Update of /cvs-repository/Packages/pypes/pypes/tests
In directory cvs.zope.org:/tmp/cvs-serv3917/tests
Modified Files:
test_identity.py
Log Message:
Genericize set interfaces to reduce redundancy
=== Packages/pypes/pypes/tests/test_identity.py 1.14 => 1.15 ===
--- Packages/pypes/pypes/tests/test_identity.py:1.14 Wed Mar 10 16:16:47 2004
+++ Packages/pypes/pypes/tests/test_identity.py Mon Apr 12 22:24:33 2004
@@ -364,8 +364,8 @@
self.set = IdentitySet()
def testInterfaces(self):
- from pypes.interfaces import IIdentitySet
- self.failUnless(verifyObject(IIdentitySet, self.set))
+ from pypes.interfaces import IMutableSet
+ self.failUnless(verifyObject(IMutableSet, self.set))
def testFromUniqueSequence(self):
from pypes.identity import IdentitySet
More information about the Zope-CVS
mailing list