/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/plugins/launchpad/test_lp_directory.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-22 00:56:52 UTC
  • mfrom: (6621.2.26 py3_pokes)
  • Revision ID: jelmer@jelmer.uk-20170522005652-yjahcr9hwmjkno7n
Merge Python3 porting work ('py3 pokes')

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import xmlrpclib
21
21
 
22
22
import breezy
23
 
from breezy import (
 
23
from ... import (
24
24
    debug,
25
25
    errors,
26
26
    tests,
27
27
    transport,
28
28
    )
29
 
from breezy.branch import Branch
30
 
from breezy.directory_service import directories
31
 
from breezy.tests import (
 
29
from ...branch import Branch
 
30
from ...directory_service import directories
 
31
from ...tests import (
32
32
    features,
33
33
    ssl_certs,
34
34
    TestCaseInTempDir,
35
35
    TestCaseWithMemoryTransport
36
36
)
37
 
from breezy.plugins.launchpad import (
 
37
from . import (
38
38
    _register_directory,
39
39
    lp_registration,
40
40
    )
41
 
from breezy.plugins.launchpad.lp_directory import (
 
41
from .lp_directory import (
42
42
    LaunchpadDirectory)
43
 
from breezy.plugins.launchpad.account import get_lp_login, set_lp_login
44
 
from breezy.tests import http_server
 
43
from .account import get_lp_login, set_lp_login
 
44
from ...tests import http_server
45
45
 
46
46
 
47
47
def load_tests(standard_tests, module, loader):
440
440
 
441
441
 
442
442
if features.HTTPSServerFeature.available():
443
 
    from breezy.tests import https_server
 
443
    from ...tests import https_server
444
444
    class PreCannedHTTPSServer(PreCannedServerMixin, https_server.HTTPSServer):
445
445
        pass
446
446