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

MergeĀ lp:bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3211
3211
                override_existing=True)
3212
3212
 
3213
3213
    def test_fetch_everything_backwards_compat(self):
3214
 
        """Can fetch with EverythingResult even with pre 2.3 servers.
 
3214
        """Can fetch with EverythingResult even with pre 2.4 servers.
3215
3215
        
3216
 
        Pre-2.3 do not support 'everything' searches with the
 
3216
        Pre-2.4 do not support 'everything' searches with the
3217
3217
        Repository.get_stream_1.19 verb.
3218
3218
        """
3219
3219
        verb_log = []
3220
3220
        class OldGetStreamVerb(SmartServerRepositoryGetStream_1_19):
3221
3221
            """A version of the Repository.get_stream_1.19 verb patched to
3222
 
            reject 'everything' searches the way 2.2 and earlier do.
 
3222
            reject 'everything' searches the way 2.3 and earlier do.
3223
3223
            """
3224
3224
            def recreate_search(self, repository, search_bytes, discard_excess=False):
3225
3225
                verb_log.append(search_bytes.split('\n', 1)[0])