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

Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
from breezy import (
18
18
    branch as _mod_branch,
 
19
    bzrbranch as _mod_bzrbranch,
19
20
    controldir,
20
21
    errors,
21
22
    reconfigure,
446
447
 
447
448
    def test_lightweight_checkout_to_tree_preserves_reference_locations(self):
448
449
        format = controldir.format_registry.make_bzrdir('1.9')
449
 
        format.set_branch_format(_mod_branch.BzrBranchFormat8())
 
450
        format.set_branch_format(_mod_bzrbranch.BzrBranchFormat8())
450
451
        tree = self.make_branch_and_tree('tree', format=format)
451
452
        tree.branch.set_reference_info('file_id', 'path', '../location')
452
453
        checkout = tree.branch.create_checkout('checkout', lightweight=True)