[Checkins] SVN: zope.configuration/trunk/src/zope/configuration/tests/test_config.py relax the check to avoid path difference on Windows

David Glick davidglick at onenw.org
Sat Mar 12 09:11:56 EST 2011


Log message for revision 120887:
  relax the check to avoid path difference on Windows

Changed:
  U   zope.configuration/trunk/src/zope/configuration/tests/test_config.py

-=-
Modified: zope.configuration/trunk/src/zope/configuration/tests/test_config.py
===================================================================
--- zope.configuration/trunk/src/zope/configuration/tests/test_config.py	2011-03-12 13:40:10 UTC (rev 120886)
+++ zope.configuration/trunk/src/zope/configuration/tests/test_config.py	2011-03-12 14:11:55 UTC (rev 120887)
@@ -254,7 +254,7 @@
     >>> c = config.ConfigurationContext()
     >>> c.package = stub()
 
-    >>> c.path('y/z').endswith('relative/path/y/z')
+    >>> os.path.isabs(c.path('y/z'))
     True
     """
 



More information about the checkins mailing list