Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
Skip module test to send an event when processing an event
Browse files Browse the repository at this point in the history
We don't use this API and it breaks the change to serialize event
creation per room (parallel limit = 1).
  • Loading branch information
Fizzadar committed Sep 8, 2022
1 parent f42c8f5 commit ce3a764
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/rest/client/test_third_party_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,10 @@ def test_legacy_on_create_room(self) -> None:
"""
self.helper.create_room_as(self.user_id, tok=self.tok, expect_code=403)

@unittest.skip_unless(
False,
"Beeper: parallel room event create limit = 1, cannot send additional events while handling an event",
)
def test_sent_event_end_up_in_room_state(self) -> None:
"""Tests that a state event sent by a module while processing another state event
doesn't get dropped from the state of the room. This is to guard against a bug
Expand Down

0 comments on commit ce3a764

Please sign in to comment.