/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 brzlib/transport/fakevfat.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 12:41:27 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521124127-iv8etg0vwymyai6y
s/bzr/brz/ in apport config.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
"""
40
40
 
 
41
from __future__ import absolute_import
 
42
 
41
43
import re
42
44
 
43
 
from bzrlib.errors import TransportNotPossible
44
 
from bzrlib.transport import decorator
 
45
from brzlib.transport import decorator
45
46
 
46
47
 
47
48
# TODO: It might be nice if these hooks were available in a more general way
101
102
 
102
103
def get_test_permutations():
103
104
    """Return the permutations to be used in testing."""
104
 
    from bzrlib.tests import test_server
 
105
    from brzlib.tests import test_server
105
106
    return [(FakeVFATTransportDecorator, test_server.FakeVFATServer),]