/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

Split out git and bzr-specific transforms.

Merged from https://code.launchpad.net/~jelmer/brz/transform-file-id/+merge/386859

Show diffs side-by-side

added added

removed removed

Lines of Context:
515
515
            str(e),
516
516
            r'Cannot bind address "example\.com:22":.*Permission denied')
517
517
 
518
 
    def test_transform_rename_failed(self):
519
 
        e = errors.TransformRenameFailed(u"from", u"to", "readonly file", 2)
520
 
        self.assertEqual(
521
 
            u"Failed to rename from to to: readonly file",
522
 
            str(e))
523
 
 
524
518
 
525
519
class TestErrorsUsingTransport(tests.TestCaseWithMemoryTransport):
526
520
    """Tests for errors that need to use a branch or repo."""