mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-05 04:18:59 -04:00
Fix a typo in MSC3873 config option. (#15138)
Previously the experimental configuration option referred to the wrong MSC number.
This commit is contained in:
parent
1a1738eca2
commit
ec79870f14
4 changed files with 10 additions and 9 deletions
|
@ -54,7 +54,7 @@ class FlattenDictTestCase(unittest.TestCase):
|
|||
self.assertEqual({"m.foo.b\\ar": "abc"}, _flatten_dict(input))
|
||||
self.assertEqual(
|
||||
{"m\\.foo.b\\\\ar": "abc"},
|
||||
_flatten_dict(input, msc3783_escape_event_match_key=True),
|
||||
_flatten_dict(input, msc3873_escape_event_match_key=True),
|
||||
)
|
||||
|
||||
def test_non_string(self) -> None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue