~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_repository_chk/__init__.py

Change the inventory serialization to be line delimited.
This causes a format bump for all repos.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
from bzrlib.bzrdir import BzrDir
31
31
from bzrlib.repofmt.pack_repo import (
32
32
    RepositoryFormatKnitPack5,
33
 
    RepositoryFormatPackDevelopment3,
 
33
    RepositoryFormatPackDevelopment5,
34
34
    )
35
35
from bzrlib.tests import (
36
36
                          adapt_modules,
64
64
        if isinstance(format, remote.RemoteRepositoryFormat):
65
65
            with_support = dict(scenario_info)
66
66
            with_support['repository_format'] = \
67
 
                RepositoryFormatPackDevelopment3()
 
67
                RepositoryFormatPackDevelopment5()
68
68
            supported.append((test_name + "(Supported)", with_support))
69
69
            no_support = dict(scenario_info)
70
70
            no_support['repository_format'] = RepositoryFormatKnitPack5()