[Zope-Checkins] SVN: Zope/trunk/lib/python/ZPublisher/tests/testHTTPRequest.py fixed indentation

Andreas Jung andreas at andreas-jung.com
Mon Jun 12 01:31:37 EDT 2006


Log message for revision 68588:
  fixed indentation
  

Changed:
  U   Zope/trunk/lib/python/ZPublisher/tests/testHTTPRequest.py

-=-
Modified: Zope/trunk/lib/python/ZPublisher/tests/testHTTPRequest.py
===================================================================
--- Zope/trunk/lib/python/ZPublisher/tests/testHTTPRequest.py	2006-06-12 05:30:33 UTC (rev 68587)
+++ Zope/trunk/lib/python/ZPublisher/tests/testHTTPRequest.py	2006-06-12 05:31:36 UTC (rev 68588)
@@ -703,15 +703,15 @@
 	
     def testResolveUrl(self):
         # Check that ResolveUrl really raises the same error 
-	# it received from ZPublisher.BaseRequest.traverse
-	# collector entry 1944
+        # it received from ZPublisher.BaseRequest.traverse
+        # collector entry 1944
         from ZPublisher.HTTPRequest import HTTPRequest
-	from zExceptions import NotFound
-	env = TEST_ENVIRON.copy()
-	req = HTTPRequest(None, env, None)
-	req['PARENTS'] = ['Nobody', 'cares', 'here'] 
-	testmethod = req.resolve_url
-	self.assertRaises(NotFound, testmethod, 'http://localhost/does_not_exist')
+        from zExceptions import NotFound
+        env = TEST_ENVIRON.copy()
+        req = HTTPRequest(None, env, None)
+        req['PARENTS'] = ['Nobody', 'cares', 'here'] 
+        testmethod = req.resolve_url
+        self.assertRaises(NotFound, testmethod, 'http://localhost/does_not_exist')
 
 
     def testDebug(self):



More information about the Zope-Checkins mailing list