/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 breezy/tests/test_switch.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-12 01:41:38 UTC
  • mto: (7143.16.20 even-more-cleanups)
  • mto: This revision was merged to the branch mainline in revision 7175.
  • Revision ID: jelmer@jelmer.uk-20181112014138-3b0zyx91cu3wdq3k
More PEP8 fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
from breezy import (
23
23
    branch,
24
24
    errors,
25
 
    lock,
26
25
    merge as _mod_merge,
27
26
    switch,
28
27
    tests,
119
118
        tree.commit('rev2')
120
119
        self.build_tree(['checkout/file-3'])
121
120
        checkout.add('file-3')
122
 
        checkout_dir = checkout.controldir
123
121
        # rename the branch on disk, the checkout object is now invalid.
124
122
        os.rename('branch-1', 'branch-2')
125
123
        to_branch = branch.Branch.open('branch-2')