diff options
author | H. Shay <hillerys@element.io> | 2022-09-01 14:47:10 -0700 |
---|---|---|
committer | H. Shay <hillerys@element.io> | 2022-09-01 14:47:10 -0700 |
commit | 6630daba47c68d8e5e17ebf65077136c0ddc0659 (patch) | |
tree | c997068bd10f3e8da2c2ceb4fd18e26413ceb1f1 | |
parent | ditch auth events and pass state map instead (diff) | |
download | synapse-6630daba47c68d8e5e17ebf65077136c0ddc0659.tar.xz |
fix 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 6f864d6044..80ed7b6fd2 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(36, 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(39, channel.resource_usage.db_txn_count) def test_post_room_visibility_key(self) -> None: # POST with visibility config key, expect new room id |