/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_graph.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-02-27 04:33:10 UTC
  • mfrom: (4053.2.5 jam-fix)
  • Revision ID: pqm@pqm.ubuntu.com-20090227043310-f96id6jsevm31349
Fix "'null:' not present" error when pushing. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1080
1080
        search = graph._make_breadth_first_searcher(['head'])
1081
1081
        expected = [
1082
1082
            # NULL_REVISION and ghost1 have not been returned
1083
 
            (set(['head']), (set(['head']), set(['child', 'ghost1']), 1),
 
1083
            (set(['head']),
 
1084
             (set(['head']), set(['child', NULL_REVISION, 'ghost1']), 1),
1084
1085
             ['head'], None, [NULL_REVISION, 'ghost1']),
1085
1086
            # ghost1 has been returned, NULL_REVISION is to be returned in the
1086
1087
            # next iteration.