/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 bzrlib/tests/test_transport.py

  • Committer: Robert Collins
  • Date: 2006-09-28 22:36:54 UTC
  • mto: (1986.4.6 test_ancestry.py)
  • mto: This revision was merged to the branch mainline in revision 2059.
  • Revision ID: robertc@robertcollins.net-20060928223654-9edbbe94712f8ce9
UnbreakĀ transportĀ tests.

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)