~jelmer/brz/colocated-spec

« back to all changes in this revision

Viewing changes to breezy/tests/test_inv.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:
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
 
18
 
from brzlib import (
 
18
from breezy import (
19
19
    chk_map,
20
20
    groupcompress,
21
21
    errors,
26
26
    tests,
27
27
    workingtree,
28
28
    )
29
 
from brzlib.inventory import (
 
29
from breezy.inventory import (
30
30
    CHKInventory,
31
31
    Inventory,
32
32
    ROOT_ID,
36
36
    TreeReference,
37
37
    mutable_inventory_from_tree,
38
38
    )
39
 
from brzlib.tests import (
 
39
from breezy.tests import (
40
40
    TestCase,
41
41
    TestCaseWithTransport,
42
42
    )
43
 
from brzlib.tests.scenarios import load_tests_apply_scenarios
 
43
from breezy.tests.scenarios import load_tests_apply_scenarios
44
44
 
45
45
 
46
46
load_tests = load_tests_apply_scenarios