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/storage/test__base.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/storage/test__base.py')
-rw-r--r-- | tests/storage/test__base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test__base.py b/tests/storage/test__base.py index abee2f631d..e72cace8ff 100644 --- a/tests/storage/test__base.py +++ b/tests/storage/test__base.py @@ -19,7 +19,7 @@ from twisted.internet import defer from synapse.util.async import ObservableDeferred -from synapse.storage._base import Cache, cached +from synapse.util.caches.descriptors import Cache, cached class CacheTestCase(unittest.TestCase): |