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

Implement GitRevisionTree.get_file_sha1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
337
337
        b = Blob.from_string("bla")
338
338
        t1 = directory_to_tree(ie, lambda x: b.id, {}, None)
339
339
        t2 = Tree()
340
 
        t2.add(0100644, "bar", b.id)
 
340
        t2.add("bar", 0100644, b.id)
341
341
        self.assertEquals(t1, t2)