diff options
author | Erik Johnston <erik@matrix.org> | 2018-05-17 15:08:50 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-05-17 15:09:10 +0100 |
commit | c771c124d58a5f9c3be50b29e1b5c2011ac009d8 (patch) | |
tree | ca73da6cfc7d38d58f74ffcfe373b9a2313ebb97 /tests/storage | |
parent | Add note about index in changelog (diff) | |
download | synapse-c771c124d58a5f9c3be50b29e1b5c2011ac009d8.tar.xz |
Improve documentation and comments
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_chunk_linearizer_table.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/storage/test_chunk_linearizer_table.py b/tests/storage/test_chunk_linearizer_table.py index 5ca436c555..9890dffd60 100644 --- a/tests/storage/test_chunk_linearizer_table.py +++ b/tests/storage/test_chunk_linearizer_table.py @@ -23,6 +23,10 @@ from synapse.storage.chunk_ordered_table import ChunkDBOrderedListStore class ChunkLinearizerStoreTestCase(tests.unittest.TestCase): + """Tests to ensure that the ordering and rebalancing functions of + ChunkDBOrderedListStore work as expected. + """ + def __init__(self, *args, **kwargs): super(ChunkLinearizerStoreTestCase, self).__init__(*args, **kwargs) |