~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_graph.py

  • Committer: John Arbash Meinel
  • Date: 2008-05-01 22:49:34 UTC
  • mto: This revision was merged to the branch mainline in revision 3443.
  • Revision ID: john@arbash-meinel.com-20080501224934-3i8kxtuyr9r21711
Work on a way to collapse the searchers earlier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1229
1229
    def test_racing_shortcuts(self):
1230
1230
        graph = self.make_graph(racing_shortcuts)
1231
1231
        self.assertFindUniqueAncestors(graph,
1232
 
            ['p', 'q', 'z'], 'z', ['y'])
1233
 
        import pdb; pdb.set_trace()
 
1232
            ['p', 'q', 'z'], 'z', ['j'])
1234
1233
        self.assertFindUniqueAncestors(graph,
1235
1234
            ['h', 'i', 'j', 'y'], 'j', ['z'])
1236
1235