~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_pull.py

  • Committer: Vincent Ladeuil
  • Date: 2011-08-12 09:49:24 UTC
  • mfrom: (6015.9.10 2.4)
  • mto: This revision was merged to the branch mainline in revision 6066.
  • Revision ID: v.ladeuil+lp@free.fr-20110812094924-knc5s0g7vs31a2f1
Merge 2.4 into trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
        # Make a source, sprout a target off it
153
153
        builder = self.make_branch_builder('source')
154
154
        source = fixtures.build_branch_with_non_ancestral_rev(builder)
 
155
        source.get_config().set_user_option('branch.fetch_tags', 'True')
155
156
        target_bzrdir = source.bzrdir.sprout('target')
156
157
        source.tags.set_tag('tag-a', 'rev-2')
157
158
        # Pull from source
410
411
        # being too low. If rpc_count increases, more network roundtrips have
411
412
        # become necessary for this use case. Please do not adjust this number
412
413
        # upwards without agreement from bzr's network support maintainers.
413
 
        self.assertLength(18, self.hpss_calls)
 
414
        self.assertLength(19, self.hpss_calls)
414
415
        remote = Branch.open('stacked')
415
416
        self.assertEndsWith(remote.get_stacked_on_url(), '/parent')
416
417