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

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

Issue 10689144: Extensions Docs Server: Samples zip files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Samples page with full links and descriptions Created 8 years, 5 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
Index: chrome/common/extensions/docs/server2/test_urlfetch.py
diff --git a/chrome/common/extensions/docs/server2/test_urlfetch.py b/chrome/common/extensions/docs/server2/test_urlfetch.py
index a14bd303f5fb49d4ce1ad3d2ba3891be85037d56..ce6dd9df2206a4e279b26c8ce6f4b6d9ff6e6d13 100644
--- a/chrome/common/extensions/docs/server2/test_urlfetch.py
+++ b/chrome/common/extensions/docs/server2/test_urlfetch.py
@@ -11,6 +11,7 @@ def _ReadFile(filename):
class _MockResponse(object):
def __init__(self):
self.content = ''
+ self.headers = { 'content-type': 'none' }
def fetch(url):
result = _MockResponse()

Powered by Google App Engine
This is Rietveld 408576698