~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Robert Collins
  • Date: 2006-04-18 22:41:16 UTC
  • mto: (1711.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1671.
  • Revision ID: robertc@robertcollins.net-20060418224116-9b723440fa56e404
 * 'Metadir' is now the default disk format. This improves behaviour in
   SFTP using circumstances and allows binding and rebinding and easier
   use of repositories. (Robert Collins, Aaron Bentley).

Show diffs side-by-side

added added

removed removed

Lines of Context:
233
233
        self.build_tree(['branch_a/a'])
234
234
        tree_a.add('a')
235
235
        tree_a.commit('commit a')
236
 
        branch_b = branch_a.bzrdir.sprout('branch_b').open_branch()
237
 
        tree_b = branch_b.bzrdir.open_workingtree()
238
 
        branch_c = branch_a.bzrdir.sprout('branch_c').open_branch()
239
 
        tree_c = branch_c.bzrdir.open_workingtree()
 
236
        tree_b = branch_a.bzrdir.sprout('branch_b').open_workingtree()
 
237
        branch_b = tree_b.branch
 
238
        tree_c = branch_a.bzrdir.sprout('branch_c').open_workingtree()
 
239
        branch_c = tree_c.branch
240
240
        self.build_tree(['branch_a/b'])
241
241
        tree_a.add('b')
242
242
        tree_a.commit('commit b')