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

Use relative imports in tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
import os
24
24
 
25
 
from bzrlib import (
 
25
from .... import (
26
26
    version_info as bzrlib_version,
27
27
    )
28
 
from bzrlib.bzrdir import (
 
28
from ....bzrdir import (
29
29
    BzrDir,
30
30
    )
31
31
 
32
 
from bzrlib.tests.blackbox import ExternalBase
 
32
from ....tests.blackbox import ExternalBase
33
33
 
34
 
from bzrlib.plugins.git import (
 
34
from .. import (
35
35
    tests,
36
36
    )
37
37