~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/branch_implementations/test_branch.py

  • Committer: Martin Pool
  • Date: 2008-06-25 10:06:48 UTC
  • mfrom: (3509 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3510.
  • Revision ID: mbp@sourcefrog.net-20080625100648-ac20jxcm3ojucuby
merge trunk; remove RemoteToOtherFetcher

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
        wt_a.add(['one'])
167
167
        wt_a.commit('commit one', rev_id='1')
168
168
 
169
 
        branch_b = wt_a.bzrdir.sprout('b', revision_id='1').open_branch()
 
169
        branch_b = wt_a.branch.bzrdir.sprout('b', revision_id='1').open_branch()
170
170
        self.assertEqual(wt_a.branch.base, branch_b.get_parent())
171
171
        return branch_b
172
172