~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_fetch.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-05-06 03:17:25 UTC
  • mfrom: (4324.3.4 bug-368921)
  • Revision ID: pqm@pqm.ubuntu.com-20090506031725-stmw1gm2fs6qpq0f
(robertc) Calculate new rich root parent data with logic consistent
        with reconcile. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
578
578
        self.repo.fetch(self.tree.branch.repository, 'second-id')
579
579
        root_id = self.tree.get_root_id()
580
580
        self.assertEqual(
581
 
            ((root_id, 'left-parent'), (root_id, 'ghost-parent'),
582
 
             (root_id, 'not-ghost-parent')),
 
581
            ((root_id, 'left-parent'), (root_id, 'not-ghost-parent')),
583
582
            self.get_parents(root_id, 'second-id'))
584
583
 
585
584
    def make_two_commits(self, change_root, fetch_twice):