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

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

Issue 10825067: Extensions Docs Server: Apps samples page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: blobstore Created 8 years, 4 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/integration_test.py
diff --git a/chrome/common/extensions/docs/server2/integration_test.py b/chrome/common/extensions/docs/server2/integration_test.py
index 57a1a3a12d7ec538e1ca64dedddea721151c33c3..12734622251ebe64ebb24b75465ec3d0ec33f153 100755
--- a/chrome/common/extensions/docs/server2/integration_test.py
+++ b/chrome/common/extensions/docs/server2/integration_test.py
@@ -10,9 +10,11 @@ import unittest
import appengine_memcache as memcache
import handler
from handler import Handler
+import url_constants
KNOWN_FAILURES = [
'webstore.html',
+ 'apps_samples.html'
not at google - send to devlin 2012/08/07 01:35:38 Perhaps we should add comments here explaining why
cduvall 2012/08/08 19:27:25 Done.
]
class _MockResponse(object):
@@ -59,7 +61,7 @@ class IntegrationTest(unittest.TestCase):
def testWarmupRequest(self):
for branch in ['dev', 'trunk', 'beta', 'stable']:
handler.BRANCH_UTILITY_MEMCACHE.Set(
- branch + '.' + handler.OMAHA_PROXY_URL,
+ branch + '.' + url_constants.OMAHA_PROXY_URL,
'local',
memcache.MEMCACHE_BRANCH_UTILITY)
request = _MockRequest('_ah/warmup')

Powered by Google App Engine
This is Rietveld 408576698