Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8112)

Unified Diff: chrome/common/extensions/docs/server2/servlet.py

Issue 600073002: Docserver: Run tasks in testing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/docs/server2/integration_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/server2/servlet.py
diff --git a/chrome/common/extensions/docs/server2/servlet.py b/chrome/common/extensions/docs/server2/servlet.py
index 9a2e5e203d2907a9cdccf8ad8ac95d08ac4dc5c5..5465d81b57be10ec9ef898aaad0ab64c97bf5865 100644
--- a/chrome/common/extensions/docs/server2/servlet.py
+++ b/chrome/common/extensions/docs/server2/servlet.py
@@ -33,8 +33,11 @@ class Request(object):
self.arguments = arguments
@staticmethod
- def ForTest(path, host=None, headers=None):
- return Request(path, host or 'http://developer.chrome.com', headers or {})
+ def ForTest(path, host=None, headers=None, arguments=None):
+ return Request(path,
+ host or 'http://developer.chrome.com',
+ headers or {},
+ arguments or {})
def __repr__(self):
return 'Request(path=%s, host=%s, headers=%s)' % (
« no previous file with comments | « chrome/common/extensions/docs/server2/integration_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698