/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 breezy/tests/test_remote.py

  • Committer: Jelmer Vernooij
  • Date: 2017-07-23 22:06:41 UTC
  • mfrom: (6738 trunk)
  • mto: This revision was merged to the branch mainline in revision 6739.
  • Revision ID: jelmer@jelmer.uk-20170723220641-69eczax9bmv8d6kk
Merge trunk, address review comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
from ..bzr.bzrdir import (
50
50
    BzrDir,
51
51
    BzrDirFormat,
 
52
    )
 
53
from ..bzr import (
52
54
    RemoteBzrProber,
53
55
    )
54
56
from ..bzr.chk_serializer import chk_bencode_serializer
127
129
    def test_find_correct_format(self):
128
130
        """Should open a RemoteBzrDir over a RemoteTransport"""
129
131
        fmt = BzrDirFormat.find_format(self.transport)
130
 
        self.assertTrue(bzrdir.RemoteBzrProber
 
132
        self.assertTrue(RemoteBzrProber
131
133
                        in controldir.ControlDirFormat._server_probers)
132
134
        self.assertIsInstance(fmt, RemoteBzrDirFormat)
133
135