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'), |