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 ea35de303a968bdafd2464f93cc559746086a2b2..a217f1bb2608213e1881aef0fb4b8d3c1bd92d8c 100755 |
--- a/chrome/common/extensions/docs/server2/branch_utility_test.py |
+++ b/chrome/common/extensions/docs/server2/branch_utility_test.py |
@@ -3,7 +3,7 @@ |
# 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 in_memory_object_store import InMemoryObjectStore |
from branch_utility import BranchUtility |
from fake_url_fetcher import FakeUrlFetcher |
import unittest |
@@ -13,7 +13,7 @@ class BranchUtilityTest(unittest.TestCase): |
self._branch_util = BranchUtility('branch_utility/first.json', |
'stable', |
FakeUrlFetcher('test_data'), |
- AppEngineMemcache('')) |
+ InMemoryObjectStore('')) |
def testSplitChannelNameFromPath(self): |
self.assertEquals(('dev', 'hello/stuff.html'), |