tests: Fix comment about number of database queries.

This commit fixes the comment about number of database queries
when moving message from muted topic to mention clearly about
the number of queries added due to original topic being muted.

We do not include the queries that is executed to check whether
the topic is muted or not, as they will be executed in all cases.
This commit is contained in:
Sahil Batra 2023-04-04 09:00:41 +05:30 committed by Tim Abbott
parent f9eff1c478
commit 6e4c844907
1 changed files with 5 additions and 2 deletions

View File

@ -1354,8 +1354,11 @@ class EditMessageTest(EditMessageTestCase):
users_to_be_notified_via_muted_topics_event.append(user_topic.user_profile_id)
change_all_topic_name = "Topic 1 edited"
# This code path adds 19 (12 + 4/visibility_policy + 1/user + 1) to
# the number of database queries for moving a topic.
# Verify how many total database queries are required. We
# expect 6 queries (4/visibility_policy to update the muted
# state + 1/user with a UserTopic row for the events data)
# beyond what is typical were there not UserTopic records to
# update. Ideally, we'd eliminate the per-user component.
with self.assert_database_query_count(19):
check_update_message(
user_profile=hamlet,