| 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 4ccf97594e7f5474f9c806e4530d84111b593998..01399034da0261234cd674415c0dc2256662b60d 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'
|
| ]
|
|
|
| class _MockResponse(object):
|
| @@ -49,7 +51,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')
|
|
|