/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 from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
        self.assertStartsWith(
125
125
            str(e), 'Unprintable exception ErrorWithBadFormat(')
126
126
 
 
127
 
 
128
class TestSpecificErrors(TestCase):
 
129
    
 
130
    def test_transport_not_possible(self):
 
131
        e = errors.TransportNotPossible('readonly', 'original error')
 
132
        self.assertEqual('Transport operation not possible:'
 
133
                         ' readonly original error', str(e))