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

  • Committer: Jelmer Vernooij
  • Date: 2017-07-15 13:23:08 UTC
  • mto: This revision was merged to the branch mainline in revision 6738.
  • Revision ID: jelmer@jelmer.uk-20170715132308-1rcazg0fb2pdax0w
Move urlutils errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
505
505
 
506
506
    def test_invalid_url_join(self):
507
507
        """Test the formatting of InvalidURLJoin."""
508
 
        e = errors.InvalidURLJoin('Reason', 'base path', ('args',))
 
508
        e = urlutils.InvalidURLJoin('Reason', 'base path', ('args',))
509
509
        self.assertEqual(
510
510
            "Invalid URL join request: Reason: 'base path' + ('args',)",
511
511
            str(e))