~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport_implementations.py

Fix line endings in tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
                    'contents of e\n',
130
130
                    'contents of g\n',
131
131
                    ]
132
 
        self.build_tree(files, transport=t)
 
132
        self.build_tree(files, transport=t, line_endings='binary')
133
133
        self.check_transport_contents('contents of a\n', t, 'a')
134
134
        content_f = t.get_multi(files)
135
135
        for content, f in zip(contents, content_f):
709
709
 
710
710
        paths = ['a', 'b/', 'b/c', 'b/d/', 'b/d/e']
711
711
        sizes = [14, 0, 16, 0, 18] 
712
 
        self.build_tree(paths, transport=t)
 
712
        self.build_tree(paths, transport=t, line_endings='binary')
713
713
 
714
714
        for path, size in zip(paths, sizes):
715
715
            st = t.stat(path)