~jelmer/brz/integrate-git

« back to all changes in this revision

Viewing changes to breezy/tests/git/test_server.py

  • Committer: Jelmer Vernooij
  • Date: 2017-06-14 02:52:51 UTC
  • Revision ID: jelmer@jelmer.uk-20170614025251-nbqpse92rggwlawz
Fix tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
from dulwich.repo import Repo
21
21
import threading
22
22
 
23
 
from ....transport import transport_server_registry
24
 
from ....tests import (
 
23
from ...transport import transport_server_registry
 
24
from .. import (
25
25
    TestCase,
26
26
    TestCaseWithTransport,
27
27
    )
28
28
 
29
 
from ..server import (
 
29
from ...git.server import (
30
30
    BzrBackend,
31
31
    BzrTCPGitServer,
32
32
    )