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

  • Committer: Richard Wilbur
  • Date: 2016-02-04 19:07:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6618.
  • Revision ID: richard.wilbur@gmail.com-20160204190728-p0zvfii6zase0fw7
Update COPYING.txt from the original http://www.gnu.org/licenses/gpl-2.0.txt  (Only differences were in whitespace.)  Thanks to Petr Stodulka for pointing out the discrepancy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
 
from . import features
 
17
from bzrlib.tests import features
18
18
 
19
19
# SFTPTransport offers better performances but relies on paramiko, if paramiko
20
20
# is not available, we fallback to FtpTransport
21
21
if features.paramiko.available():
22
 
    from . import test_sftp_transport
23
 
    from ..transport import sftp, Transport
 
22
    from bzrlib.tests import test_sftp_transport
 
23
    from bzrlib.transport import sftp, Transport
24
24
    _backing_scheme = 'sftp'
25
25
    _backing_transport_class = sftp.SFTPTransport
26
26
    _backing_test_class = test_sftp_transport.TestCaseWithSFTPServer
27
27
else:
28
 
    from ..transport import ftp, Transport
29
 
    from . import test_ftp_transport
 
28
    from bzrlib.transport import ftp, Transport
 
29
    from bzrlib.tests import test_ftp_transport
30
30
    _backing_scheme = 'ftp'
31
31
    _backing_transport_class = ftp.FtpTransport
32
32
    _backing_test_class = test_ftp_transport.TestCaseWithFTPServer