aboutsummaryrefslogtreecommitdiff
path: root/patchwork/tests/api/test_patch.py
diff options
context:
space:
mode:
Diffstat (limited to 'patchwork/tests/api/test_patch.py')
-rw-r--r--patchwork/tests/api/test_patch.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/patchwork/tests/api/test_patch.py b/patchwork/tests/api/test_patch.py
index 888a257..6e5e6a0 100644
--- a/patchwork/tests/api/test_patch.py
+++ b/patchwork/tests/api/test_patch.py
@@ -215,8 +215,7 @@ class TestPatchAPI(utils.APITestCase):
series = create_series()
create_patches(5, series=series)
- # FIXME(stephenfin): This should result in 3 queries
- with self.assertNumQueries(8):
+ with self.assertNumQueries(3):
self.client.get(self.api_url())
@utils.store_samples('patch-detail')