/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 breezy/tests/test_fetch.py

  • Committer: Jelmer Vernooij
  • Date: 2019-03-05 07:32:38 UTC
  • mto: (7290.1.21 work)
  • mto: This revision was merged to the branch mainline in revision 7311.
  • Revision ID: jelmer@jelmer.uk-20190305073238-zlqn981opwnqsmzi
Add appveyor configuration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
498
498
        self.tree.add_parent_tree_id(b'not-ghost-parent')
499
499
        self.tree.commit('second commit', rev_id=b'second-id')
500
500
        self.repo.fetch(self.tree.branch.repository, b'second-id')
501
 
        root_id = self.tree.path2id('')
 
501
        root_id = self.tree.get_root_id()
502
502
        self.assertEqual(
503
503
            ((root_id, b'left-parent'), (root_id, b'not-ghost-parent')),
504
504
            self.get_parents(root_id, b'second-id'))