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

Unified Diff: appengine/findit/util_scripts/test/local_cache_test.py

Issue 2557553002: [Culprit-Finder] Seperate gae related part in cache_decorator and gitile repository to gae_libs/ (Closed)
Patch Set: Fix nits. Created 4 years 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
« no previous file with comments | « appengine/findit/util_scripts/script_util.py ('k') | appengine/findit/waterfall/build_failure_analysis.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/util_scripts/test/local_cache_test.py
diff --git a/appengine/findit/util_scripts/test/local_cache_test.py b/appengine/findit/util_scripts/test/local_cache_test.py
index b8eff03cefde6c993d2486086fd0cd633c4b979d..99c4c4adc127b31aa19996ec8f831e3c9220ac19 100644
--- a/appengine/findit/util_scripts/test/local_cache_test.py
+++ b/appengine/findit/util_scripts/test/local_cache_test.py
@@ -15,9 +15,9 @@ import local_cache
class LocalCacheTest(testing.AppengineTestCase):
- def testLocalCacher(self):
+ def testLocalCache(self):
fake_dir = 'fake_dir'
- cacher = local_cache.LocalCacher(cache_dir=fake_dir)
+ cacher = local_cache.LocalCache(cache_dir=fake_dir)
def _MockPathExists(path, *_):
return False if path == os.path.join(
fake_dir, 'uncached_key') else True
« no previous file with comments | « appengine/findit/util_scripts/script_util.py ('k') | appengine/findit/waterfall/build_failure_analysis.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698