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

Return mapping in revision_id_bzr_to_foreign() as required by the interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
        
79
79
        tests.run_git('tag', '-a', '-m', 'add tag', 'foo')
80
80
        
81
 
        newid = open('.git/refs/tags/foo').read().rstrip()
82
 
 
83
81
        thebranch = Branch.open('.')
84
 
        self.assertEquals({"foo": default_mapping.revision_id_foreign_to_bzr(newid)},
 
82
        self.assertEquals({"foo": default_mapping.revision_id_foreign_to_bzr(reva)},
85
83
                          thebranch.tags.get_tag_dict())
86
84
        
87
85