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

Fix some bit of fetching.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
        tests.run_git('init')
30
30
 
31
31
        gd = bzrdir.BzrDir.open('.')
32
 
        self.assertIsInstance(gd, dir.GitDir)
 
32
        self.assertIsInstance(gd, dir.LocalGitDir)
33
33
 
34
34
    def test_open_workingtree(self):
35
35
        tests.run_git('init')
51
51
 
52
52
    def setUp(self):
53
53
        super(TestGitDirFormat, self).setUp()
54
 
        self.format = dir.GitBzrDirFormat()
 
54
        self.format = dir.LocalGitBzrDirFormat()
55
55
 
56
56
    def test_get_format_description(self):
57
57
        self.assertEquals("Local Git Repository",