~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_log.py

  • Committer: Jelmer Vernooij
  • Date: 2011-11-23 12:00:17 UTC
  • mfrom: (6284 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6314.
  • Revision ID: jelmer@samba.org-20111123120017-8ijg60aqqsx5cma5
Merge bzr.dev, fix hpss call counts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    registry,
25
25
    revision,
26
26
    revisionspec,
27
 
    symbol_versioning,
28
27
    tests,
29
28
    )
30
29
 
1636
1635
        log.Logger(b, request).show(log_formatter)
1637
1636
        # should now only have 2 revisions:
1638
1637
        self.assertEquals(len(log_formatter.revisions), 2)
 
1638