[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/Five/browser/tests/aqlegacy.py Fix the busted 'aqlegacy_ftest' doctests, by ensuring that the dummy Implicit view base class doesn't acquire 'index_html'.

Tres Seaver tseaver at palladion.com
Sun Jan 4 14:33:01 EST 2009


Log message for revision 94503:
  Fix the busted 'aqlegacy_ftest' doctests, by ensuring that the dummy Implicit view base class doesn't acquire 'index_html'.

Changed:
  U   Zope/trunk/lib/python/Products/Five/browser/tests/aqlegacy.py

-=-
Modified: Zope/trunk/lib/python/Products/Five/browser/tests/aqlegacy.py
===================================================================
--- Zope/trunk/lib/python/Products/Five/browser/tests/aqlegacy.py	2009-01-04 17:14:31 UTC (rev 94502)
+++ Zope/trunk/lib/python/Products/Five/browser/tests/aqlegacy.py	2009-01-04 19:33:01 UTC (rev 94503)
@@ -71,6 +71,7 @@
 
 class Implicit(Acquisition.Implicit):
 
+    index_html = None  # we don't want to acquire this!
     def render(self):
         return 'Implicit'
 



More information about the Zope-Checkins mailing list