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

  • Committer: Martin Pool
  • Date: 2010-02-25 06:17:27 UTC
  • mfrom: (5055 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5057.
  • Revision ID: mbp@sourcefrog.net-20100225061727-4sd9lt0qmdc6087t
merge news

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
 
1
# Copyright (C) 2005-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
37
37
    per_branch,
38
38
    )
39
39
from bzrlib.tests.http_server import HttpServer
40
 
from bzrlib.transport.memory import MemoryServer
 
40
from bzrlib.transport import memory
41
41
 
42
42
 
43
43
class TestTestCaseWithBranch(per_branch.TestCaseWithBranch):
512
512
 
513
513
    def setUp(self):
514
514
        super(ChrootedTests, self).setUp()
515
 
        if not self.vfs_transport_factory == MemoryServer:
 
515
        if not self.vfs_transport_factory == memory.MemoryServer:
516
516
            self.transport_readonly_server = HttpServer
517
517
 
518
518
    def test_open_containing(self):