/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_smart.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:
27
27
import bz2
28
28
import zlib
29
29
 
30
 
from brzlib import (
 
30
from breezy import (
31
31
    bencode,
32
32
    branch as _mod_branch,
33
33
    controldir,
39
39
    urlutils,
40
40
    versionedfile,
41
41
    )
42
 
from brzlib.smart import (
 
42
from breezy.smart import (
43
43
    branch as smart_branch,
44
44
    bzrdir as smart_dir,
45
45
    repository as smart_repo,
48
48
    server,
49
49
    vfs,
50
50
    )
51
 
from brzlib.testament import Testament
52
 
from brzlib.tests import test_server
53
 
from brzlib.transport import (
 
51
from breezy.testament import Testament
 
52
from breezy.tests import test_server
 
53
from breezy.transport import (
54
54
    chroot,
55
55
    memory,
56
56
    )