diff options
author | H. Shay <hillerys@element.io> | 2022-12-19 17:59:01 -0800 |
---|---|---|
committer | H. Shay <hillerys@element.io> | 2022-12-19 17:59:01 -0800 |
commit | eaaaf169c2a71515ad181a320082036b156eb493 (patch) | |
tree | 9540b25a3a4158f332d5f5d167fb0be97ffae53b | |
parent | allow third party rules to rebuild a batched event (diff) | |
download | synapse-eaaaf169c2a71515ad181a320082036b156eb493.tar.xz |
change tests to reflect new reality
-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 b4daace556..0335356668 100644 --- a/tests/rest/client/test_rooms.py +++ b/tests/rest/client/test_rooms.py @@ -715,7 +715,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(33, channel.resource_usage.db_txn_count) + self.assertEqual(25, channel.resource_usage.db_txn_count) def test_post_room_initial_state(self) -> None: # POST with initial_state config key, expect new room id @@ -728,7 +728,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(36, channel.resource_usage.db_txn_count) + self.assertEqual(28, channel.resource_usage.db_txn_count) def test_post_room_visibility_key(self) -> None: # POST with visibility config key, expect new room id |