~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_server.py

  • Committer: Vincent Ladeuil
  • Date: 2010-02-09 17:30:07 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-20100209173007-5wmyir7x0i8wy5ns
Fix some missing prefixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
 
162
162
    def get_decorator_class(self):
163
163
        from bzrlib.transport import fakevfat
164
 
        return FakeVFATTransportDecorator
 
164
        return fakevfat.FakeVFATTransportDecorator
165
165
 
166
166
 
167
167
class LogDecoratorServer(DecoratorServer):
177
177
 
178
178
    def get_decorator_class(self):
179
179
        from bzrlib.transport import nosmart
180
 
        return NoSmartTransportDecorator
 
180
        return nosmart.NoSmartTransportDecorator
181
181
 
182
182
 
183
183
class ReadonlyServer(DecoratorServer):
193
193
 
194
194
    def get_decorator_class(self):
195
195
        from bzrlib.transport import trace
196
 
        return TransportTraceDecorator
 
196
        return trace.TransportTraceDecorator
197
197
 
198
198
 
199
199
class UnlistableServer(DecoratorServer):