diff options
author | H. Shay <hillerys@element.io> | 2022-11-04 13:50:02 -0700 |
---|---|---|
committer | H. Shay <hillerys@element.io> | 2022-11-04 13:50:02 -0700 |
commit | 64e16fef7612737fbc70cfe0f5d1cbed4c194485 (patch) | |
tree | f750f7c576e7c62592e67d8bb1582f2021d487cc | |
parent | fix newsfrag (diff) | |
download | synapse-64e16fef7612737fbc70cfe0f5d1cbed4c194485.tar.xz |
fix test
-rw-r--r-- | tests/rest/client/test_rooms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/client/test_rooms.py b/tests/rest/client/test_rooms.py index d45f9f5e43..d9dfc86953 100644 --- a/tests/rest/client/test_rooms.py +++ b/tests/rest/client/test_rooms.py @@ -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(30, channel.resource_usage.db_txn_count) + self.assertEqual(32, channel.resource_usage.db_txn_count) def test_post_room_visibility_key(self) -> None: # POST with visibility config key, expect new room id |