~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_workingtree/test_inv.py

  • Committer: Jelmer Vernooij
  • Date: 2012-02-20 12:19:29 UTC
  • mfrom: (6437.23.11 2.5)
  • mto: (6581.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 6582.
  • Revision ID: jelmer@samba.org-20120220121929-7ni2psvjoatm1yp4
Merge bzr/2.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
        wt.lock_tree_write()
31
31
        self.addCleanup(wt.unlock)
32
32
        self.assertEqual(len(wt.all_file_ids()), 1)
33
 
        open('b1/a', 'wb').write('a test\n')
 
33
        with open('b1/a', 'wb') as f: f.write('a test\n')
34
34
        wt.add('a')
35
35
        self.assertEqual(len(wt.all_file_ids()), 2)
36
36
        wt.flush() # workaround revert doing wt._write_inventory for now.