Index: chrome/common/extensions/docs/server2/integration_test.py |
diff --git a/chrome/common/extensions/docs/server2/integration_test.py b/chrome/common/extensions/docs/server2/integration_test.py |
index 07e1fe7636c17c39ca78932a9c422413bbfa302f..b443df7500803037c049e8f4a242f4328ac298bb 100755 |
--- a/chrome/common/extensions/docs/server2/integration_test.py |
+++ b/chrome/common/extensions/docs/server2/integration_test.py |
@@ -256,11 +256,11 @@ class IntegrationTest(unittest.TestCase): |
@DisableLogging('warning') |
def testFileNotFound(self): |
- response = Handler(Request.ForTest('/extensions/notfound')).Get() |
+ response = LocalRenderer.Render('/extensions/notfound') |
self.assertEqual(404, response.status) |
def testSiteVerificationFile(self): |
- response = Handler(Request.ForTest('/' + SITE_VERIFICATION_FILE)).Get() |
+ response = LocalRenderer.Render('/' + SITE_VERIFICATION_FILE) |
self.assertEqual(200, response.status) |
if __name__ == '__main__': |