~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport_implementations.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-31 00:43:21 UTC
  • mfrom: (1551.2.51 win32fixes)
  • Revision ID: pqm@pqm.ubuntu.com-20060331004321-2171d32febcbfe4d
Various fixes for win32

Show diffs side-by-side

added added

removed removed

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