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

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

Issue 10829348: Extensions Docs Server: Large performance increase (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes and ObjectStore 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/github_file_system_test.py
diff --git a/chrome/common/extensions/docs/server2/github_file_system_test.py b/chrome/common/extensions/docs/server2/github_file_system_test.py
index bd24e3dfc6a80531d484d46644ee56deabea7cad..60a613d1d9acdfb614b5dae69b8c392171f7e641 100755
--- a/chrome/common/extensions/docs/server2/github_file_system_test.py
+++ b/chrome/common/extensions/docs/server2/github_file_system_test.py
@@ -6,7 +6,7 @@
import os
import unittest
-from appengine_memcache import AppEngineMemcache
+from in_memory_object_store import InMemoryObjectStore
not at google - send to devlin 2012/08/21 00:30:11 import order
cduvall 2012/08/21 01:33:33 Done.
from fake_url_fetcher import FakeUrlFetcher
from github_file_system import GithubFileSystem
@@ -33,7 +33,7 @@ class FakeGithubFetcher(FakeUrlFetcher):
class GithubFileSystemTest(unittest.TestCase):
def setUp(self):
self._file_system = GithubFileSystem(FakeGithubFetcher('test_data'),
- AppEngineMemcache('test'),
+ InMemoryObjectStore('test'),
FakeBlobstore())
def testReadFiles(self):

Powered by Google App Engine
This is Rietveld 408576698