[Zope3-checkins] SVN: Zope3/branches/philikon-simplify-skinning/src/zope/app/container/browser/tests/test_directive.py Get rid of an ILayer import and rectify the layer base interface at the same time.

Philipp von Weitershausen philikon at philikon.de
Tue Feb 21 10:35:16 EST 2006


Log message for revision 41736:
  Get rid of an ILayer import and rectify the layer base interface at the same time.
  

Changed:
  U   Zope3/branches/philikon-simplify-skinning/src/zope/app/container/browser/tests/test_directive.py

-=-
Modified: Zope3/branches/philikon-simplify-skinning/src/zope/app/container/browser/tests/test_directive.py
===================================================================
--- Zope3/branches/philikon-simplify-skinning/src/zope/app/container/browser/tests/test_directive.py	2006-02-21 15:34:22 UTC (rev 41735)
+++ Zope3/branches/philikon-simplify-skinning/src/zope/app/container/browser/tests/test_directive.py	2006-02-21 15:35:16 UTC (rev 41736)
@@ -21,7 +21,7 @@
 
 import unittest
 from zope.interface import Interface
-from zope.publisher.interfaces import ILayer
+from zope.publisher.interfaces.browser import IBrowserRequest
 from zope.testing.doctestunit import DocTestSuite
 from zope.app.container.browser.metaconfigure import containerViews
 
@@ -46,7 +46,7 @@
     pass
 
 
-class ITestLayer(ILayer):
+class ITestLayer(IBrowserRequest):
     pass
 
 



More information about the Zope3-Checkins mailing list