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

  • Committer: Jelmer Vernooij
  • Date: 2017-07-23 22:06:41 UTC
  • mfrom: (6738 trunk)
  • mto: This revision was merged to the branch mainline in revision 6739.
  • Revision ID: jelmer@jelmer.uk-20170723220641-69eczax9bmv8d6kk
Merge trunk, address review comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
from ... import errors
23
23
from .lp_registration import (
24
 
    InvalidLaunchpadInstance, LaunchpadService, NotLaunchpadBranch)
 
24
    InvalidURL,
 
25
    InvalidLaunchpadInstance,
 
26
    LaunchpadService,
 
27
    NotLaunchpadBranch,
 
28
    )
25
29
from .test_lp_directory import FakeResolveFactory
26
30
from ...tests import TestCase
27
31
 
156
160
            raise xmlrpclib.Fault(42, 'something went wrong')
157
161
        factory.submit = submit
158
162
        self.assertRaises(
159
 
            errors.InvalidURL, service.get_web_url_from_branch_url, 'lp:foo',
 
163
            InvalidURL, service.get_web_url_from_branch_url, 'lp:foo',
160
164
            factory)
161
165
 
162
166
    def test_staging_url(self):