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

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

Issue 10834329: Extension docs server: many changes to bring down the latency of the server, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/memcache_file_system_test.py
diff --git a/chrome/common/extensions/docs/server2/memcache_file_system_test.py b/chrome/common/extensions/docs/server2/memcache_file_system_test.py
index 6f89b4888e3c80aaa69549c0d06c125550da9298..3e73ea79c68aa2585eea0b3344a582feab54e783 100755
--- a/chrome/common/extensions/docs/server2/memcache_file_system_test.py
+++ b/chrome/common/extensions/docs/server2/memcache_file_system_test.py
@@ -8,7 +8,7 @@ import unittest
import appengine_memcache as memcache
from appengine_memcache import AppEngineMemcache
-from file_system import FileSystem
+from file_system import FileSystem, StatInfo
from future import Future
from local_file_system import LocalFileSystem
from memcache_file_system import MemcacheFileSystem
@@ -29,7 +29,7 @@ class _FakeFileSystem(FileSystem):
def Stat(self, path):
self._stat_count += 1
- return self.StatInfo(
+ return StatInfo(
self.stat_value,
dict((path + str(i), self.stat_value) for i in range(5)))

Powered by Google App Engine
This is Rietveld 408576698