[Checkins] SVN: grok/branches/philikon-eggification/src/grok/ftests/test_grok_functional.py Fix module name (it's not grok, it's the current package, hence __name__).

Philipp von Weitershausen philikon at philikon.de
Tue Apr 17 18:09:44 EDT 2007


Log message for revision 74222:
  Fix module name (it's not grok, it's the current package, hence __name__).
  

Changed:
  U   grok/branches/philikon-eggification/src/grok/ftests/test_grok_functional.py

-=-
Modified: grok/branches/philikon-eggification/src/grok/ftests/test_grok_functional.py
===================================================================
--- grok/branches/philikon-eggification/src/grok/ftests/test_grok_functional.py	2007-04-17 22:07:39 UTC (rev 74221)
+++ grok/branches/philikon-eggification/src/grok/ftests/test_grok_functional.py	2007-04-17 22:09:43 UTC (rev 74222)
@@ -8,7 +8,7 @@
                                          FunctionalTestSetup, sync, ZCMLLayer)
 
 ftesting_zcml = os.path.join(os.path.dirname(grok.__file__), 'ftesting.zcml')
-GrokFunctionalLayer = ZCMLLayer(ftesting_zcml, 'grok', 'GrokFunctionalLayer')
+GrokFunctionalLayer = ZCMLLayer(ftesting_zcml, __name__, 'GrokFunctionalLayer')
 
 def setUp(test):
     FunctionalTestSetup().setUp()



More information about the Checkins mailing list