/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_fetch.py

Fix blob fetch tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
191
191
        base_inv = Inventory()
192
192
        objs = { "blobname": blob}
193
193
        ret = import_git_blob(self._texts, self._mapping, "bla", "blobname", 
194
 
            base_inv, None, "somerevid", [], self._map, objs.__getitem__, False)
 
194
            base_inv, None, "somerevid", [], self._map, objs.__getitem__, False,
 
195
            False)
195
196
        self.assertEquals(set([('bla', 'somerevid')]), self._texts.keys())
196
197
        self.assertEquals(self._texts.get_record_stream([('bla', 'somerevid')],
197
198
            "unordered", True).next().get_bytes_as("fulltext"), "bar")