launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #19387
[Merge] lp:~cjwatson/launchpad/testfix-snap-listings into lp:launchpad
Colin Watson has proposed merging lp:~cjwatson/launchpad/testfix-snap-listings into lp:launchpad.
Commit message:
Account for an extra Snap query in TestBranchView.test_query_count_index_with_subscribers.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/testfix-snap-listings/+merge/271521
Account for an extra Snap query in TestBranchView.test_query_count_index_with_subscribers.
--
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~cjwatson/launchpad/testfix-snap-listings into lp:launchpad.
=== modified file 'lib/lp/code/browser/tests/test_branch.py'
--- lib/lp/code/browser/tests/test_branch.py 2015-09-10 08:47:06 +0000
+++ lib/lp/code/browser/tests/test_branch.py 2015-09-17 17:03:52 +0000
@@ -1,4 +1,4 @@
-# Copyright 2009-2013 Canonical Ltd. This software is licensed under the
+# Copyright 2009-2015 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""Unit tests for BranchView."""
@@ -560,7 +560,7 @@
logout()
with StormStatementRecorder() as recorder:
browser.open(branch_url)
- self.assertThat(recorder, HasQueryCount(Equals(28)))
+ self.assertThat(recorder, HasQueryCount(Equals(29)))
class TestBranchViewPrivateArtifacts(BrowserTestCase):
Follow ups