diff options
author | Erik Johnston <erik@matrix.org> | 2022-09-30 17:40:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-30 17:40:33 +0100 |
commit | 535f8c8f7d64d4058500a5988278fd3026645164 (patch) | |
tree | 6b2e4d6f83964e5761ba976f359d684522b8de60 /tests | |
parent | Update mypy and mypy-zope, attempt 3 (#13993) (diff) | |
download | synapse-535f8c8f7d64d4058500a5988278fd3026645164.tar.xz |
Skip filtering during push if there are no push actions (#13992)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rest/client/test_rooms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rest/client/test_rooms.py b/tests/rest/client/test_rooms.py index e281aef779..7f8cf4fab0 100644 --- a/tests/rest/client/test_rooms.py +++ b/tests/rest/client/test_rooms.py @@ -710,7 +710,7 @@ class RoomsCreateTestCase(RoomBase): self.assertEqual(HTTPStatus.OK, channel.code, channel.result) self.assertTrue("room_id" in channel.json_body) assert channel.resource_usage is not None - self.assertEqual(35, channel.resource_usage.db_txn_count) + self.assertEqual(34, channel.resource_usage.db_txn_count) def test_post_room_initial_state(self) -> None: # POST with initial_state config key, expect new room id @@ -723,7 +723,7 @@ class RoomsCreateTestCase(RoomBase): self.assertEqual(HTTPStatus.OK, channel.code, channel.result) self.assertTrue("room_id" in channel.json_body) assert channel.resource_usage is not None - self.assertEqual(38, channel.resource_usage.db_txn_count) + self.assertEqual(37, channel.resource_usage.db_txn_count) def test_post_room_visibility_key(self) -> None: # POST with visibility config key, expect new room id |