/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

Use relative imports in tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
import os
31
31
import urllib
32
32
 
33
 
from bzrlib import (
 
33
from .... import (
34
34
    errors,
35
35
    revision,
36
36
    urlutils,
37
37
    )
38
 
from bzrlib.branch import (
 
38
from ....branch import (
39
39
    Branch,
40
40
    InterBranch,
41
41
    )
42
 
from bzrlib.bzrdir import (
 
42
from ....bzrdir import (
43
43
    BzrDir,
44
44
    )
45
 
from bzrlib.repository import (
 
45
from ....repository import (
46
46
    Repository,
47
47
    )
48
48
 
49
 
from bzrlib.plugins.git import (
 
49
from .. import (
50
50
    branch,
51
51
    tests,
52
52
    )
53
 
from bzrlib.plugins.git.dir import (
 
53
from ..dir import (
54
54
    LocalGitControlDirFormat,
55
55
    )
56
 
from bzrlib.plugins.git.mapping import (
 
56
from ..mapping import (
57
57
    default_mapping,
58
58
    )
59
59