/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/per_repository/test_repository.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from cStringIO import StringIO
20
20
import re
21
21
 
22
 
from brzlib import (
 
22
from breezy import (
23
23
    branch as _mod_branch,
24
24
    controldir,
25
25
    delta as _mod_delta,
35
35
    upgrade,
36
36
    workingtree,
37
37
    )
38
 
from brzlib.repofmt import (
 
38
from breezy.repofmt import (
39
39
    knitpack_repo,
40
40
    )
41
 
from brzlib.tests import (
 
41
from breezy.tests import (
42
42
    per_repository,
43
43
    test_server,
44
44
    )
45
 
from brzlib.tests.matchers import *
 
45
from breezy.tests.matchers import *
46
46
 
47
47
 
48
48
class TestRepositoryMakeBranchAndTree(per_repository.TestCaseWithRepository):
628
628
            self.get_vfs_only_url('remote')).open_repository()
629
629
        # Make a branch in that repo in an old format that isn't the default
630
630
        # branch format for the repo.
631
 
        from brzlib.branchfmt.fullhistory import BzrBranchFormat5
 
631
        from breezy.branchfmt.fullhistory import BzrBranchFormat5
632
632
        format = remote_backing_repo.bzrdir.cloning_metadir()
633
633
        format._branch_format = BzrBranchFormat5()
634
634
        remote_transport = remote_repo.bzrdir.root_transport.clone('branch')