~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_push.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:
37
37
        self.build_tree(['branch_a/a'])
38
38
        tree_a.add('a')
39
39
        tree_a.commit('commit a')
40
 
        branch_b = branch_a.bzrdir.sprout('branch_b').open_branch()
41
 
        tree_b = branch_b.bzrdir.open_workingtree()
42
 
        branch_c = branch_a.bzrdir.sprout('branch_c').open_branch()
43
 
        tree_c = branch_c.bzrdir.open_workingtree()
 
40
        tree_b = branch_a.bzrdir.sprout('branch_b').open_workingtree()
 
41
        branch_b = tree_b.branch
 
42
        tree_c = branch_a.bzrdir.sprout('branch_c').open_workingtree()
 
43
        branch_c = tree_c.branch
44
44
        self.build_tree(['branch_a/b'])
45
45
        tree_a.add('b')
46
46
        tree_a.commit('commit b')