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

  • Committer: Jelmer Vernooij
  • Date: 2017-06-10 00:06:46 UTC
  • mfrom: (6673 work)
  • mto: This revision was merged to the branch mainline in revision 6675.
  • Revision ID: jelmer@jelmer.uk-20170610000646-xj6jh277lo4xuo10
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
from .. import (
20
20
    branch as _mod_branch,
 
21
    bzrbranch as _mod_bzrbranch,
21
22
    revision as _mod_revision,
22
23
    tests,
23
24
    )
46
47
        """Making a BranchBuilder with a format option sets the branch type."""
47
48
        builder = BranchBuilder(self.get_transport(), format='dirstate-tags')
48
49
        branch = builder.get_branch()
49
 
        self.assertIsInstance(branch, _mod_branch.BzrBranch6)
 
50
        self.assertIsInstance(branch, _mod_bzrbranch.BzrBranch6)
50
51
 
51
52
    def test_build_one_commit(self):
52
53
        """doing build_commit causes a commit to happen."""