[Zope3-checkins] 
	SVN: zope.testing/trunk/src/zope/testing/testrunner.txt
	--usecompile tests: Small simplification to path setup code.
    Tim Peters 
    tim.one at comcast.net
       
    Thu Sep 29 14:18:19 EDT 2005
    
    
  
Log message for revision 38692:
  --usecompile tests:  Small simplification to path setup code.
  
Changed:
  U   zope.testing/trunk/src/zope/testing/testrunner.txt
-=-
Modified: zope.testing/trunk/src/zope/testing/testrunner.txt
===================================================================
--- zope.testing/trunk/src/zope/testing/testrunner.txt	2005-09-29 18:06:16 UTC (rev 38691)
+++ zope.testing/trunk/src/zope/testing/testrunner.txt	2005-09-29 18:18:19 UTC (rev 38692)
@@ -1954,10 +1954,10 @@
 in a copy of that:
 
     >>> NEWNAME = "unlikely_package_name"
-    >>> src = os.path.join(this_directory, 'testrunner-ex', 'usecompiled')
+    >>> src = os.path.join(directory_with_tests, 'usecompiled')
     >>> os.path.isdir(src)
     True
-    >>> dst = os.path.join(this_directory, 'testrunner-ex', NEWNAME)
+    >>> dst = os.path.join(directory_with_tests, NEWNAME)
     >>> os.path.isdir(dst)
     False
 
    
    
More information about the Zope3-Checkins
mailing list