~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_changeset.py

  • Committer: Aaron Bentley
  • Date: 2006-05-19 18:50:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: abentley@panoramicfeedback.com-20060519185005-c884556a44fe1d13
Restore path-orientation of ChangesetTree

Show diffs side-by-side

added added

removed removed

Lines of Context:
288
288
        self.assertEqual(self.sorted_ids(ctree), ['a', 'b', 'c', 'd'])
289
289
        ctree.note_deletion("grandparent/parent/file")
290
290
        ctree.note_id("e", "grandparent/alt_parent/fool", kind="directory")
291
 
        ctree.note_last_changed("e", "revisionidiguess")
 
291
        ctree.note_last_changed("grandparent/alt_parent/fool", 
 
292
                                "revisionidiguess")
292
293
        self.assertEqual(self.sorted_ids(ctree), ['a', 'b', 'd', 'e'])
293
294
 
294
295