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

  • Committer: Vincent Ladeuil
  • Date: 2011-03-14 10:11:58 UTC
  • mfrom: (5609.24.1 2.3)
  • mto: (5609.24.2 2.3)
  • mto: This revision was merged to the branch mainline in revision 5723.
  • Revision ID: v.ladeuil+lp@free.fr-20110314101158-9ojis0ftsljg3c3t
Merge bzr/2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Robey Pointer <robey@lag.net>
 
1
# Copyright (C) 2005-2011 Robey Pointer <robey@lag.net>
2
2
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
18
18
import os
19
19
import socket
20
20
import sys
21
 
import threading
22
21
import time
23
22
 
24
23
from bzrlib import (
30
29
    ui,
31
30
    )
32
31
from bzrlib.osutils import (
33
 
    pathjoin,
34
32
    lexists,
35
33
    )
36
34
from bzrlib.tests import (
46
44
    from bzrlib.transport import sftp as _mod_sftp
47
45
    from bzrlib.tests import stub_sftp
48
46
 
49
 
from bzrlib.workingtree import WorkingTree
50
 
 
51
47
 
52
48
def set_test_transport_to_sftp(testcase):
53
49
    """A helper to set transports on test case instances."""