~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_log.py

  • Committer: Ian Clatworthy
  • Date: 2009-01-23 01:59:49 UTC
  • mto: (3953.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3954.
  • Revision ID: ian.clatworthy@canonical.com-20090123015949-rbju3vhsb33xsqba
feedback from jelmer re position of tags in --line

Show diffs side-by-side

added added

removed removed

Lines of Context:
776
776
        formatter = log.LineLogFormatter(to_file=logfile)
777
777
        log.show_log(wt.branch, formatter)
778
778
        self.assertEqualDiff("""\
779
 
3{v1.0, v1.0rc1}: Jane Foo 2005-11-22 rev-3
780
 
2{v0.2}: Joe Foo 2005-11-22 rev-2
 
779
3: Jane Foo 2005-11-22 {v1.0, v1.0rc1} rev-3
 
780
2: Joe Foo 2005-11-22 {v0.2} rev-2
781
781
1: Joe Foo 2005-11-22 rev-1
782
782
""",
783
783
                             logfile.getvalue())