launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #24944
[Merge] ~pappacena/launchpad:testfix-blueprint-spec-querycount into launchpad:master
Thiago F. Pappacena has proposed merging ~pappacena/launchpad:testfix-blueprint-spec-querycount into launchpad:master.
Commit message:
[testfix] Bumping a bit the query count limit on blueprint page test
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~pappacena/launchpad/+git/launchpad/+merge/386685
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~pappacena/launchpad:testfix-blueprint-spec-querycount into launchpad:master.
diff --git a/lib/lp/blueprints/browser/tests/test_specification.py b/lib/lp/blueprints/browser/tests/test_specification.py
index a3be9e9..fe2e93b 100644
--- a/lib/lp/blueprints/browser/tests/test_specification.py
+++ b/lib/lp/blueprints/browser/tests/test_specification.py
@@ -250,7 +250,7 @@ class TestSpecificationSet(BrowserTestCase):
product = self.factory.makeProduct()
removeSecurityProxy(product).official_blueprints = True
self.factory.makeSpecification(product=product)
- limit = BrowsesWithQueryLimit(42, product.owner, rootsite='blueprints')
+ limit = BrowsesWithQueryLimit(43, product.owner, rootsite='blueprints')
self.assertThat(product, limit)
login_celebrity('admin')
[self.factory.makeSpecification(product=product) for i in range(4)]
Follow ups