diff options
author | Jason Little <realtyem@gmail.com> | 2023-03-08 06:22:27 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-08 06:22:27 -0600 |
commit | 0cf5e80870de37cc5115447f5a06d785f5cf8718 (patch) | |
tree | 8c705ee2208b5842d99e3828b41c1d8ff1cdbb32 /tests/push/test_bulk_push_rule_evaluator.py | |
parent | Remove condition based on number of ports (diff) | |
parent | More speedups/fixes to creating batched events (#15195) (diff) | |
download | synapse-0cf5e80870de37cc5115447f5a06d785f5cf8718.tar.xz |
Merge branch 'develop' into comp-worker-shorthand
Diffstat (limited to 'tests/push/test_bulk_push_rule_evaluator.py')
-rw-r--r-- | tests/push/test_bulk_push_rule_evaluator.py | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/tests/push/test_bulk_push_rule_evaluator.py b/tests/push/test_bulk_push_rule_evaluator.py index 73fecfd4ad..46df0102f7 100644 --- a/tests/push/test_bulk_push_rule_evaluator.py +++ b/tests/push/test_bulk_push_rule_evaluator.py @@ -228,15 +228,7 @@ class TestBulkPushRuleEvaluator(HomeserverTestCase): ) return len(result) > 0 - @override_config( - { - "experimental_features": { - "msc3758_exact_event_match": True, - "msc3952_intentional_mentions": True, - "msc3966_exact_event_property_contains": True, - } - } - ) + @override_config({"experimental_features": {"msc3952_intentional_mentions": True}}) def test_user_mentions(self) -> None: """Test the behavior of an event which includes invalid user mentions.""" bulk_evaluator = BulkPushRuleEvaluator(self.hs) @@ -332,15 +324,7 @@ class TestBulkPushRuleEvaluator(HomeserverTestCase): ) ) - @override_config( - { - "experimental_features": { - "msc3758_exact_event_match": True, - "msc3952_intentional_mentions": True, - "msc3966_exact_event_property_contains": True, - } - } - ) + @override_config({"experimental_features": {"msc3952_intentional_mentions": True}}) def test_room_mentions(self) -> None: """Test the behavior of an event which includes invalid room mentions.""" bulk_evaluator = BulkPushRuleEvaluator(self.hs) |