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

  • Committer: Jelmer Vernooij
  • Date: 2020-08-10 15:00:17 UTC
  • mfrom: (7490.40.99 work)
  • mto: This revision was merged to the branch mainline in revision 7521.
  • Revision ID: jelmer@jelmer.uk-20200810150017-vs7xnrd1vat4iktg
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
from breezy import (
21
21
    revision as _mod_revision,
22
22
    )
23
 
from breezy.tree import TreeChange
 
23
from breezy.bzr.inventorytree import InventoryTreeChange
24
24
from breezy.tests.per_repository import TestCaseWithRepository
25
25
 
26
26
 
33
33
        self.overrideEnv('BRZ_EMAIL', 'foo@sample.com')
34
34
        builder = branch.get_commit_builder([], branch.get_config_stack())
35
35
        list(builder.record_iter_changes(None, _mod_revision.NULL_REVISION, [
36
 
            TreeChange(
 
36
            InventoryTreeChange(
37
37
                b'TREE_ROOT', (None, ''), True, (False, True), (None, None),
38
38
                (None, ''), (None, 'directory'), (None, False))]))
39
39
        builder.finish_inventory()