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

Cope with root moving.

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
 
193
193
    def test_all_revision_ids(self):
194
194
        commit_id = self._do_commit()
195
 
        self.assertEquals(
196
 
                set([default_mapping.revision_id_foreign_to_bzr(commit_id)]),
 
195
        self.assertEquals(set(["git-v1:%s" % commit_id]),
197
196
                self.git_repo.all_revision_ids())
198
197
 
199
198
    def test_get_ancestry_null(self):
275
274
class ForeignTestsRepositoryFactory(object):
276
275
 
277
276
    def make_repository(self, transport):
278
 
        return dir.LocalGitControlDirFormat().initialize_on_transport(transport).open_repository()
 
277
        return dir.LocalGitBzrDirFormat().initialize_on_transport(transport).open_repository()