~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_graph.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-08-07 21:43:42 UTC
  • mfrom: (1551.15.83 Aaron's integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070807214342-ti2fzm7m9br66daj
Update test documentation

Show diffs side-by-side

added added

removed removed

Lines of Context:
354
354
    def test_filter_candidate_lca(self):
355
355
        """Test filter_candidate_lca for a corner case
356
356
 
357
 
        This tests the case where we encounter the end of iteration for 'd'
358
 
        in the same pass as we discover that 'c' is an ancestor of 'd', and
359
 
        therefore 'd' can't be an lca.
 
357
        This tests the case where we encounter the end of iteration for 'e'
 
358
        in the same pass as we discover that 'd' is an ancestor of 'e', and
 
359
        therefore 'e' can't be an lca.
 
360
 
 
361
        To compensate for different dict orderings on other Python
 
362
        implementations, we mirror 'd' and 'e' with 'b' and 'a'.
360
363
        """
361
364
        # This test is sensitive to the iteration order of dicts.  It will
362
365
        # pass incorrectly if 'e' and 'a' sort before 'c'