/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_pack_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:
21
21
 
22
22
from stat import S_ISDIR
23
23
 
24
 
from brzlib.btree_index import BTreeGraphIndex
25
 
from brzlib.index import GraphIndex
26
 
from brzlib import (
 
24
from breezy.btree_index import BTreeGraphIndex
 
25
from breezy.index import GraphIndex
 
26
from breezy import (
27
27
    controldir,
28
28
    errors,
29
29
    inventory,
34
34
    transport,
35
35
    ui,
36
36
    )
37
 
from brzlib.repofmt.groupcompress_repo import RepositoryFormat2a
38
 
from brzlib.smart import (
 
37
from breezy.repofmt.groupcompress_repo import RepositoryFormat2a
 
38
from breezy.smart import (
39
39
    client,
40
40
    )
41
 
from brzlib.tests import (
 
41
from breezy.tests import (
42
42
    TestCaseWithTransport,
43
43
    TestNotApplicable,
44
44
    )
45
 
from brzlib.transport import (
 
45
from breezy.transport import (
46
46
    memory,
47
47
    )
48
 
from brzlib.tests import test_server
 
48
from breezy.tests import test_server
49
49
 
50
50
 
51
51
class TestPackRepository(TestCaseWithTransport):