~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-28 10:06:39 UTC
  • mfrom: (6437.40.2 rmbranch-colo)
  • mto: This revision was merged to the branch mainline in revision 6482.
  • Revision ID: jelmer@samba.org-20120228100639-p5gndu91wuqwugti
Merge rmbranch-colo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
            inventory.InventoryFile('foo-id', 'foo', parent_id='bar-id')),
57
57
            (None, 'bar', 'bar-id', inventory.InventoryDirectory('bar-id',
58
58
            'bar', parent_id=root_id))])
59
 
        self.assertEqual('bar/foo', wt.inventory.id2path('foo-id'))
60
 
        self.assertEqual('bar', wt.inventory.id2path('bar-id'))
 
59
        self.assertEqual('bar/foo', wt.id2path('foo-id'))
 
60
        self.assertEqual('bar', wt.id2path('bar-id'))
61
61
 
62
62
    def test_remove(self):
63
63
        wt = self.make_branch_and_tree('.')