summary refs log tree commit diff
path: root/tests/storage/test_state.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-24 13:16:43 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-24 13:16:43 +0000
commit35d74a232c7b6141706e1ceaf2e2342ad5dce301 (patch)
tree39983a41a60b176389c224a66371e9b47f8c040e /tests/storage/test_state.py
parent1.11.0 (diff)
parentClarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957) (diff)
downloadsynapse-35d74a232c7b6141706e1ceaf2e2342ad5dce301.tar.xz
Clarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957)
* commit '509e381af':
  Clarify list/set/dict/tuple comprehensions and enforce via flake8 (#6957)
  changelog
  Increase MAX_EVENTS_BEHIND for replication clients
Diffstat (limited to 'tests/storage/test_state.py')
-rw-r--r--tests/storage/test_state.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_state.py b/tests/storage/test_state.py

index 04d58fbf24..0b88308ff4 100644 --- a/tests/storage/test_state.py +++ b/tests/storage/test_state.py
@@ -394,7 +394,7 @@ class StateStoreTestCase(tests.unittest.TestCase): ) = self.state_datastore._state_group_cache.get(group) self.assertEqual(is_all, False) - self.assertEqual(known_absent, set([(e1.type, e1.state_key)])) + self.assertEqual(known_absent, {(e1.type, e1.state_key)}) self.assertDictEqual(state_dict_ids, {(e1.type, e1.state_key): e1.event_id}) ############################################