mirror of https://github.com/zulip/zulip.git
test_classes: Improve assert_database_query_count output message.
Output message should talk about both the cases: actual_count > expected_count and actual_count < expected_count. The message now includes information for the case where actual_query_count < expected_query_count. Fixes: #23325
This commit is contained in:
parent
914712beab
commit
38aa1ee1ff
|
@ -1146,8 +1146,9 @@ Output:
|
|||
{count} queries expected, got {actual_count}.
|
||||
This is a performance-critical code path, where we check
|
||||
the number of database queries used in order to avoid accidental regressions.
|
||||
If the new query is necessary, you should update this test,
|
||||
and explain in the pull request why adding an additional query can't be avoided."""
|
||||
If an unnecessary query was removed or the new query is necessary, you should
|
||||
update this test, and explain what queries we added/removed in the pull request
|
||||
and why any new queries can't be avoided."""
|
||||
)
|
||||
|
||||
def assert_json_error_contains(
|
||||
|
|
Loading…
Reference in New Issue