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

Use relative imports in tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Tests for pushing revisions from Bazaar into Git."""
19
19
 
20
 
from bzrlib.bzrdir import (
 
20
from ....bzrdir import (
21
21
    format_registry,
22
22
    )
23
 
from bzrlib.repository import (
 
23
from ....repository import (
24
24
    InterRepository,
25
25
    )
26
 
from bzrlib.tests import (
 
26
from ....tests import (
27
27
    TestCaseWithTransport,
28
28
    )
29
29
 
30
 
from bzrlib.plugins.git.mapping import (
 
30
from ..mapping import (
31
31
    BzrGitMappingExperimental,
32
32
    BzrGitMappingv1,
33
33
    )
34
 
from bzrlib.plugins.git.errors import NoPushSupport
35
 
from bzrlib.plugins.git.push import (
 
34
from ..errors import NoPushSupport
 
35
from ..push import (
36
36
    InterToGitRepository,
37
37
    )
38
38