diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-04 15:58:28 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-04 15:58:28 +0100 |
commit | c67ba143fa1c5d9de0e3e998b9ec74c1f3342742 (patch) | |
tree | 68e0c98dc8220cde71119de96e2cd02d4a2fcd03 /tests/util | |
parent | Add basic dictionary cache (diff) | |
download | synapse-c67ba143fa1c5d9de0e3e998b9ec74c1f3342742.tar.xz |
Move DictionaryCache
Diffstat (limited to 'tests/util')
-rw-r--r-- | tests/util/test_dict_cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/util/test_dict_cache.py b/tests/util/test_dict_cache.py index 8cb9be6581..79bc1225d6 100644 --- a/tests/util/test_dict_cache.py +++ b/tests/util/test_dict_cache.py @@ -17,7 +17,7 @@ from twisted.internet import defer from tests import unittest -from synapse.storage.util.caches import DictionaryCache +from synapse.util.dictionary_cache import DictionaryCache class DictCacheTestCase(unittest.TestCase): |