diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-13 17:27:08 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-13 17:27:08 +0100 |
commit | d6bcc68ea7471f1b404a4fa122f204d0f17dadf9 (patch) | |
tree | 2d99393df77ab5fea45468fe6c97fe5bafacd512 /tests/util/test_lrucache.py | |
parent | Merge pull request #224 from matrix-org/erikj/reactor_metrics (diff) | |
parent | Remove pointless map (diff) | |
download | synapse-d6bcc68ea7471f1b404a4fa122f204d0f17dadf9.tar.xz |
Merge pull request #219 from matrix-org/erikj/dictionary_cache
Dictionary and list caches
Diffstat (limited to 'tests/util/test_lrucache.py')
-rw-r--r-- | tests/util/test_lrucache.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/util/test_lrucache.py b/tests/util/test_lrucache.py index ab934bf928..fc5a904323 100644 --- a/tests/util/test_lrucache.py +++ b/tests/util/test_lrucache.py @@ -16,7 +16,7 @@ from .. import unittest -from synapse.util.lrucache import LruCache +from synapse.util.caches.lrucache import LruCache class LruCacheTestCase(unittest.TestCase): @@ -52,5 +52,3 @@ class LruCacheTestCase(unittest.TestCase): cache["key"] = 1 self.assertEquals(cache.pop("key"), 1) self.assertEquals(cache.pop("key"), None) - - |