/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/test_reconfigure.py

  • Committer: Aaron Bentley
  • Date: 2008-04-25 22:16:00 UTC
  • mto: This revision was merged to the branch mainline in revision 3384.
  • Revision ID: aaron@aaronbentley.com-20080425221600-j1nkw6v8corwgw19
Remove workarounds for bug 212908

Show diffs side-by-side

added added

removed removed

Lines of Context:
201
201
        parent = self.make_branch('parent')
202
202
        checkout = parent.create_checkout('checkout')
203
203
        checkout.commit('test', rev_id='new-commit', local=True)
204
 
 
205
 
        # work around fetch bug 212908
206
 
        checkout.commit('test2', local=True)
207
 
        checkout.branch.set_last_revision_info(1, 'new-commit')
208
204
        reconfiguration = reconfigure.Reconfigure.to_lightweight_checkout(
209
205
            checkout.bzrdir)
210
206
        return checkout, parent, reconfiguration
229
225
        child = parent.bzrdir.sprout('child').open_workingtree()
230
226
        child.commit('test', rev_id='new-commit')
231
227
        parent.pull(child.branch)
232
 
        # work around fetch bug 212908
233
 
        child.commit('test', rev_id='new-commit2')
234
 
        child.branch.set_last_revision_info(1, 'new-commit')
235
228
        child.bzrdir.destroy_workingtree()
236
229
        reconfiguration = reconfigure.Reconfigure.to_lightweight_checkout(
237
230
            child.bzrdir)