We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e5d640 commit e05267fCopy full SHA for e05267f
1 file changed
tests/openedx_learning/apps/authoring/subsections/test_api.py
@@ -180,9 +180,9 @@ def test_create_subsection_queries(self):
180
Test how many database queries are required to create a subsection
181
"""
182
# The exact numbers here aren't too important - this is just to alert us if anything significant changes.
183
- with self.assertNumQueries(22):
+ with self.assertNumQueries(25):
184
_empty_subsection = self.create_subsection_with_units([])
185
- with self.assertNumQueries(27):
+ with self.assertNumQueries(30):
186
# And try with a non-empty subsection:
187
self.create_subsection_with_units([self.unit_1, self.unit_2_v1], key="u2")
188
0 commit comments