[Zope-Checkins]
SVN: Zope/trunk/lib/python/OFS/tests/testFileAndImage.py
Image.tag() no longer produces a border="0" attribute
Andreas Jung
andreas at andreas-jung.com
Sat Oct 30 04:34:35 EDT 2004
Log message for revision 28295:
Image.tag() no longer produces a border="0" attribute
Changed:
U Zope/trunk/lib/python/OFS/tests/testFileAndImage.py
-=-
Modified: Zope/trunk/lib/python/OFS/tests/testFileAndImage.py
===================================================================
--- Zope/trunk/lib/python/OFS/tests/testFileAndImage.py 2004-10-30 08:34:08 UTC (rev 28294)
+++ Zope/trunk/lib/python/OFS/tests/testFileAndImage.py 2004-10-30 08:34:35 UTC (rev 28295)
@@ -225,13 +225,11 @@
def testStr(self):
self.assertEqual(str(self.file),
- ('<img src="http://foo/file" alt="" title="" height="16" width="16" '
- 'border="0" />'))
+ ('<img src="http://foo/file" alt="" title="" height="16" width="16" />'))
def testTag(self):
self.assertEqual(self.file.tag(),
- ('<img src="http://foo/file" alt="" title="" height="16" width="16" '
- 'border="0" />'))
+ ('<img src="http://foo/file" alt="" title="" height="16" width="16" />'))
def testViewImageOrFile(self):
pass # dtml method,screw it
More information about the Zope-Checkins
mailing list