/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: Robert Collins
  • Date: 2007-03-28 22:31:41 UTC
  • mto: (2018.5.116 hpss)
  • mto: This revision was merged to the branch mainline in revision 2383.
  • Revision ID: robertc@robertcollins.net-20070328223141-sfyiqllwuimpvj06
Review feedback.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
        source = self.make_branch_and_tree('source')
101
101
        target = self.make_branch('target')
102
102
 
103
 
        self.build_tree(['a'], transport=source.bzrdir.root_transport)
 
103
        self.build_tree(['source/a'])
104
104
        source.add(['a'])
105
105
        source.commit('a')
106
106
 
132
132
        try:
133
133
            tree = a_branch.bzrdir.create_workingtree()
134
134
        except errors.NotLocalUrl:
135
 
            tree = a_branch.create_checkout('checkout', lightweight=True)
136
 
        self.build_tree(['a'], transport=tree.bzrdir.root_transport)
 
135
            tree = a_branch.create_checkout('repo/tree', lightweight=True)
 
136
        self.build_tree(['repo/tree/a'])
137
137
        tree.add(['a'])
138
138
        tree.commit('a')
139
139