/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/tree_implementations/__init__.py

Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
    def _make_abc_tree(self, tree):
93
93
        """setup an abc content tree."""
94
94
        files = ['a', 'b/', 'b/c']
95
 
        self.build_tree(files, transport=tree.bzrdir.root_transport)
 
95
        self.build_tree(files, line_endings='binary', 
 
96
                        transport=tree.bzrdir.root_transport)
96
97
        tree.set_root_id('root-id')
97
98
        tree.add(files, ['a-id', 'b-id', 'c-id'])
98
99