/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/selftest/test_commit.py

  • Committer: Alexey Shamrin
  • Date: 2005-11-21 09:07:18 UTC
  • mfrom: (1185.38.10)
  • mto: (1185.33.35 bzr.dev)
  • mto: This revision was merged to the branch mainline in revision 1510.
  • Revision ID: shamrin@gmail.com-20051121090718-48400620bf12c6c6
merge forgotten win32 fixes from http://bzr.arbash-meinel.com/branches/bzr/win32/

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
    def test_commit_rename(self):
146
146
        """Test commit of a revision where a file is renamed."""
147
147
        b = Branch.initialize('.')
148
 
        self.build_tree(['hello'])
 
148
        self.build_tree(['hello'], line_endings='binary')
149
149
        b.add(['hello'], ['hello-id'])
150
150
        b.working_tree().commit(message='one', rev_id='test@rev-1', allow_pointless=False)
151
151