~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_log.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-09-25 01:21:44 UTC
  • mfrom: (3711.3.23 lighter_log_file)
  • Revision ID: pqm@pqm.ubuntu.com-20080925012144-k71s2olv2fpy771x
(jam) 'bzr log file' now shows more relevant info,
        and does so in a more efficient manner.

Show diffs side-by-side

added added

removed removed

Lines of Context:
986
986
        view_revs_iter = log.get_view_revisions(mainline, revnos, tree.branch,
987
987
                                                'reverse', True)
988
988
        actual_revs = log._filter_revisions_touching_file_id(
989
 
                            tree.branch, 
 
989
                            tree.branch,
990
990
                            file_id,
991
 
                            mainline,
992
 
                            list(view_revs_iter))
 
991
                            list(view_revs_iter),
 
992
                            'reverse')
993
993
        self.assertEqual(revisions, [r for r, revno, depth in actual_revs])
994
994
 
995
995
    def test_file_id_f1(self):