~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
415
415
        base_url = self._server.get_url()
416
416
        # try getting the transport via the regular interface:
417
417
        t = get_transport(base_url)
418
 
        if not isinstance(t, self.transport_class): 
 
418
        if not isinstance(t, self.transport_class):
419
419
            # we did not get the correct transport class type. Override the
420
420
            # regular connection behaviour by direct construction.
421
421
            t = self.transport_class(base_url)