[Zope3-checkins] SVN: Zope3/branches/philikon-simplify-skinning/src/zope/app/zopetop/ftests.py get rid of weird dotted names of skins in urls.

Philipp von Weitershausen philikon at philikon.de
Tue Feb 21 10:45:08 EST 2006


Log message for revision 41739:
  get rid of weird dotted names of skins in urls.
  

Changed:
  U   Zope3/branches/philikon-simplify-skinning/src/zope/app/zopetop/ftests.py

-=-
Modified: Zope3/branches/philikon-simplify-skinning/src/zope/app/zopetop/ftests.py
===================================================================
--- Zope3/branches/philikon-simplify-skinning/src/zope/app/zopetop/ftests.py	2006-02-21 15:37:43 UTC (rev 41738)
+++ Zope3/branches/philikon-simplify-skinning/src/zope/app/zopetop/ftests.py	2006-02-21 15:45:07 UTC (rev 41739)
@@ -24,10 +24,8 @@
     """Funcional tests for ZopeTop skin."""
 
     def test_ZopeTopIsNotRotterdam(self):
-        response1 = self.publish("/++skin++zope.app.rotterdam.Rotterdam",
-                                 basic='mgr:mgrpw')
-        response2 = self.publish("/++skin++zope.app.zopetop.ZopeTop",
-                                 basic='mgr:mgrpw')
+        response1 = self.publish("/++skin++Rotterdam", basic='mgr:mgrpw')
+        response2 = self.publish("/++skin++ZopeTop", basic='mgr:mgrpw')
         self.assert_(response1.getBody() != response2.getBody())
 
 def test_suite():



More information about the Zope3-Checkins mailing list