summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-02-23 16:06:42 -0500
committerGitHub <noreply@github.com>2023-02-23 16:06:42 -0500
commitec79870f1422be47e8d6e85f315799888278969b (patch)
tree7e1123c78d1d39bc0172f0bb91a57cfc71927074 /tests
parentFix typo in federation_verify_certificates in config documentation. (#15139) (diff)
downloadsynapse-ec79870f1422be47e8d6e85f315799888278969b.tar.xz
Fix a typo in MSC3873 config option. (#15138)
Previously the experimental configuration option referred to the wrong
MSC number.
Diffstat (limited to 'tests')
-rw-r--r--tests/push/test_push_rule_evaluator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/push/test_push_rule_evaluator.py b/tests/push/test_push_rule_evaluator.py
index d320a12f96..4e858fd16f 100644
--- a/tests/push/test_push_rule_evaluator.py
+++ b/tests/push/test_push_rule_evaluator.py
@@ -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: