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

Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
import bzrlib.transport
45
45
 
46
46
 
47
 
def _append(fn, txt):
48
 
    """Append the given text (file-like object) to the supplied filename."""
49
 
    f = open(fn, 'ab')
50
 
    try:
51
 
        f.write(txt.read())
52
 
    finally:
53
 
        f.close()
54
 
 
55
 
 
56
47
class TransportTests(TestTransportImplementation):
57
48
 
58
49
    def setUp(self):