/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/blackbox/test_exceptions.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
import os
20
20
import re
21
21
 
22
 
from brzlib import (
 
22
from breezy import (
23
23
    bzrdir,
24
24
    config,
25
25
    controldir,
28
28
    repository,
29
29
    tests,
30
30
    )
31
 
from brzlib.repofmt.groupcompress_repo import RepositoryFormat2a
 
31
from breezy.repofmt.groupcompress_repo import RepositoryFormat2a
32
32
 
33
33
 
34
34
class TestExceptionReporting(tests.TestCaseInTempDir):
104
104
        repository.format_registry.register(TestObsoleteRepoFormat)
105
105
        self.addCleanup(controldir.format_registry.remove, "testobsolete")
106
106
        bzrdir.register_metadir(controldir.format_registry, "testobsolete",
107
 
            "brzlib.tests.blackbox.test_exceptions.TestObsoleteRepoFormat",
108
 
            branch_format='brzlib.branch.BzrBranchFormat7',
109
 
            tree_format='brzlib.workingtree_4.WorkingTreeFormat6',
 
107
            "breezy.tests.blackbox.test_exceptions.TestObsoleteRepoFormat",
 
108
            branch_format='breezy.branch.BzrBranchFormat7',
 
109
            tree_format='breezy.workingtree_4.WorkingTreeFormat6',
110
110
            deprecated=True,
111
111
            help='Same as 2a, but with an obsolete repo format.')
112
112
        self.disable_deprecation_warning()