summary refs log tree commit diff
path: root/tests/events/test_snapshot.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Correctly mention previous copyright (#16820)Erik Johnston2024-01-231-0/+1
| | | | | During the migration the automated script to update the copyright headers accidentally got rid of some of the existing copyright lines. Reinstate them.
* Update license headersPatrick Cloke2023-11-211-10/+16
|
* Replace `EventContext` fields `prev_group` and `delta_ids` with field ↵Shay2023-06-131-2/+1
| | | | `state_group_deltas` (#15233)
* Add missing type hints for tests.events. (#14904)Patrick Cloke2023-01-251-5/+12
|
* Rename storage classes (#12913)Erik Johnston2022-05-311-2/+2
|
* Remove `HomeServer.get_datastore()` (#12031)Richard van der Hoff2022-02-231-1/+1
| | | | | | | The presence of this method was confusing, and mostly present for backwards compatibility. Let's get rid of it. Part of #11733
* Flatten the synapse.rest.client package (#10600)reivilibre2021-08-171-1/+1
|
* Remove redundant "coding: utf-8" lines (#9786)Jonathan de Jong2021-04-141-1/+0
| | | | | | | Part of #9744 Removes all redundant `# -*- coding: utf-8 -*-` lines from files, as python 3 automatically reads source code as utf-8 now. `Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>`
* Update black, and run auto formatting over the codebase (#9381)Eric Eastwood2021-02-161-1/+4
| | | | | | | - Update black version to the latest - Run black auto formatting over the codebase - Run autoformatting according to [`docs/code_style.md `](https://github.com/matrix-org/synapse/blob/80d6dc9783aa80886a133756028984dbf8920168/docs/code_style.md) - Update `code_style.md` docs around installing black to use the correct version
* Convert the message handler to async/await. (#7884)Patrick Cloke2020-07-221-15/+21
|
* Fix bug in EventContext.deserialize. (#7393)Erik Johnston2020-05-051-0/+100
This caused `prev_state_ids` to be incorrect if the state event was not replacing an existing state entry.