/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/per_branch/test_bound_sftp.py

  • Committer: Vincent Ladeuil
  • Date: 2010-02-11 09:21:45 UTC
  • mto: (5029.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5030.
  • Revision ID: v.ladeuil+lp@free.fr-20100211092145-drh33z43szccfswy
Move MemoryServer back into bzrlib.transport.memory as it's needed as soon as a MemoryTransport is used. Add a NEWS entry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    tests,
27
27
    )
28
28
from bzrlib.tests import test_server
 
29
from bzrlib.transport import memory
29
30
 
30
31
 
31
32
class BoundSFTPBranch(tests.TestCaseWithTransport):
32
33
 
33
34
    def setUp(self):
34
35
        tests.TestCaseWithTransport.setUp(self)
35
 
        self.vfs_transport_factory = test_server.MemoryServer
 
36
        self.vfs_transport_factory = memory.MemoryServer
36
37
        if self.transport_server is test_server.LocalURLServer:
37
38
            self.transport_server = None
38
39