/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

Initial work on supporting move_in_thin_pack.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    )
46
46
 
47
47
from bzrlib.plugins.git import (
48
 
    LocalGitControlDirFormat,
 
48
    LocalGitBzrDirFormat,
49
49
    branch,
50
50
    tests,
51
51
    )
252
252
class ForeignTestsBranchFactory(object):
253
253
 
254
254
    def make_empty_branch(self, transport):
255
 
        d = LocalGitControlDirFormat().initialize_on_transport(transport)
 
255
        d = LocalGitBzrDirFormat().initialize_on_transport(transport)
256
256
        return d.create_branch()
257
257
 
258
258
    make_branch = make_empty_branch