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

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

Issue 10828042: Extensions Docs Server: Integration testing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix for CQ 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/branch_utility_test.py
diff --git a/chrome/common/extensions/docs/server2/branch_utility_test.py b/chrome/common/extensions/docs/server2/branch_utility_test.py
index ebfceca04f71fb28e0643dadc23a4e7de3e7d8c2..ea35de303a968bdafd2464f93cc559746086a2b2 100755
--- a/chrome/common/extensions/docs/server2/branch_utility_test.py
+++ b/chrome/common/extensions/docs/server2/branch_utility_test.py
@@ -3,9 +3,9 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+from appengine_memcache import AppEngineMemcache
from branch_utility import BranchUtility
from fake_url_fetcher import FakeUrlFetcher
-from in_memory_memcache import InMemoryMemcache
import unittest
class BranchUtilityTest(unittest.TestCase):
@@ -13,7 +13,7 @@ class BranchUtilityTest(unittest.TestCase):
self._branch_util = BranchUtility('branch_utility/first.json',
'stable',
FakeUrlFetcher('test_data'),
- InMemoryMemcache())
+ AppEngineMemcache(''))
not at google - send to devlin 2012/07/31 06:04:36 yeah ok, I guess it'd be redundant to have two dif
def testSplitChannelNameFromPath(self):
self.assertEquals(('dev', 'hello/stuff.html'),

Powered by Google App Engine
This is Rietveld 408576698