~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_log.py

  • Committer: Patch Queue Manager
  • Date: 2012-01-28 13:24:39 UTC
  • mfrom: (6450.1.1 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20120128132439-phvlss4cq7bf5rji
(jelmer) Merge the 2.5 branch. (Jelmer Vernooij)

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')