summaryrefslogtreecommitdiff
path: root/aggregator/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'aggregator/tests.py')
-rw-r--r--aggregator/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/aggregator/tests.py b/aggregator/tests.py
index afe67b0c..f5716c58 100644
--- a/aggregator/tests.py
+++ b/aggregator/tests.py
@@ -92,7 +92,7 @@ class AggregatorTests(TestCase):
def test_community_index_number_of_queries(self):
"""Intended to prevent an n+1 issue on the community index view"""
url = reverse("community-index")
- with self.assertNumQueries(8):
+ with self.assertNumQueries(9):
self.client.get(url)
def test_empty_feed_type_not_rendered(self):
@@ -119,7 +119,7 @@ class AggregatorTests(TestCase):
url = reverse(
"community-feed-list", kwargs={"feed_type_slug": self.feed_type.slug}
)
- with self.assertNumQueries(8):
+ with self.assertNumQueries(9):
self.client.get(url)
def test_management_command_sends_no_email_with_no_pending_feeds(self):