/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 bzrlib/tests/test_errors.py

merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
423
423
            "Unable to create symlink u'\\xb5' on this platform",
424
424
            str(err))
425
425
 
 
426
    def test_incorrect_url(self):
 
427
        err = errors.InvalidBugTrackerURL('foo', 'http://bug.com/')
 
428
        self.assertEquals(
 
429
            ("The URL for bug tracker \"foo\" doesn't contain {id}: "
 
430
             "http://bug.com/"),
 
431
            str(err))
 
432
 
426
433
 
427
434
class PassThroughError(errors.BzrError):
428
435