/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-24 01:09:25 UTC
  • mfrom: (6740 trunk)
  • mto: This revision was merged to the branch mainline in revision 6743.
  • Revision ID: jelmer@jelmer.uk-20170724010925-nted35vp0ufbs3p2
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
453
453
 
454
454
    def test_invalid_url_join(self):
455
455
        """Test the formatting of InvalidURLJoin."""
456
 
        e = errors.InvalidURLJoin('Reason', 'base path', ('args',))
 
456
        e = urlutils.InvalidURLJoin('Reason', 'base path', ('args',))
457
457
        self.assertEqual(
458
458
            "Invalid URL join request: Reason: 'base path' + ('args',)",
459
459
            str(e))