[Zope-Checkins] CVS: Zope3/lib/python/Zope/ContextWrapper/tests - testContainmentIterator.py:1.1.2.3
Tres Seaver
tseaver@zope.com
Tue, 12 Feb 2002 15:56:38 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/ContextWrapper/tests
In directory cvs.zope.org:/tmp/cvs-serv19744/Zope/ContextWrapper/tests
Modified Files:
Tag: Zope-3x-branch
testContainmentIterator.py
Log Message:
- Normalize file headers.
- Fix violations of "80 character" rule.
=== Zope3/lib/python/Zope/ContextWrapper/tests/testContainmentIterator.py 1.1.2.2 => 1.1.2.3 ===
#
##############################################################################
+"""
+
+$Id$
+"""
import unittest, sys
@@ -25,7 +29,8 @@
ob4 = 4
ob = Wrapper(Wrapper(ob3, Wrapper(ob2, ob1)), ob4)
- self.assertEqual(map(getbaseobject, ContainmentIterator(ob)), [ 3, 2, 1 ])
+ self.assertEqual(map(getbaseobject, ContainmentIterator(ob)),
+ [ 3, 2, 1 ])
def testUnWrapped(self):
self.assertEqual(map(getbaseobject, ContainmentIterator(9)), [ 9 ])