~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/tree_implementations/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-05 15:17:01 UTC
  • mfrom: (1711.9.17 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060905151701-a66a42db631e39ec
(bialix): win32 test fixes

Show diffs side-by-side

added added

removed removed

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