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

Support bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
class DictGitShaMapTests(TestCase,TestGitShaMap):
60
60
 
61
61
    def setUp(self):
 
62
        TestCase.setUp(self)
62
63
        self.map = DictGitShaMap()
63
64
 
64
65
 
65
66
class SqliteGitShaMapTests(TestCase,TestGitShaMap):
66
67
 
67
68
    def setUp(self):
 
69
        TestCase.setUp(self)
68
70
        self.map = SqliteGitShaMap()
69
71