/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

Fix tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
        self.assertEquals(False, self.git_repo.has_signature_for_revision_id(revision.NULL_REVISION))
145
145
 
146
146
    def test_all_revision_ids_none(self):
147
 
        self.assertEquals(set(), self.git_repo.all_revision_ids())
 
147
        self.assertEquals(set([revision.NULL_REVISION]), self.git_repo.all_revision_ids())
148
148
 
149
149
    def test_get_ancestry_null(self):
150
150
        self.assertEquals([None, revision.NULL_REVISION], self.git_repo.get_ancestry(revision.NULL_REVISION))