[Zope3-checkins] SVN: Zope3/branches/zipimport-support/src/zope/app/testing/functional.py fix class reference

Fred L. Drake, Jr. fdrake at gmail.com
Thu Nov 10 16:12:17 EST 2005


Log message for revision 40038:
  fix class reference

Changed:
  U   Zope3/branches/zipimport-support/src/zope/app/testing/functional.py

-=-
Modified: Zope3/branches/zipimport-support/src/zope/app/testing/functional.py
===================================================================
--- Zope3/branches/zipimport-support/src/zope/app/testing/functional.py	2005-11-10 19:54:38 UTC (rev 40037)
+++ Zope3/branches/zipimport-support/src/zope/app/testing/functional.py	2005-11-10 21:12:17 UTC (rev 40038)
@@ -205,7 +205,7 @@
     Usage: defineLater('foo')
     """
     globals = sys._getframe(1).f_globals
-    globals[name] = FTestingLayer(
+    globals[name] = ZCMLLayer(
         os.path.join(os.path.split(globals['__file__'])[0], 'test.zcml'),
         globals['__name__'],
         name,



More information about the Zope3-Checkins mailing list