~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_log.py

  • Committer: Jelmer Vernooij
  • Date: 2012-01-28 12:47:17 UTC
  • mfrom: (6437.3.28 2.5)
  • mto: This revision was merged to the branch mainline in revision 6451.
  • Revision ID: jelmer@canonical.com-20120128124717-80ggi7q1y7m2wjf0
MergeĀ 2.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
250
250
        wt.commit(message='add file1 and file2')
251
251
        self.run_bzr('branch parent child')
252
252
        os.unlink('child/file1')
253
 
        file('child/file2', 'wb').write('hello\n')
 
253
        with file('child/file2', 'wb') as f: f.write('hello\n')
254
254
        self.run_bzr(['commit', '-m', 'remove file1 and modify file2',
255
255
            'child'])
256
256
        os.chdir('parent')