~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Patch Queue Manager
  • Date: 2016-01-15 09:21:49 UTC
  • mfrom: (6606.2.1 autodoc-unicode)
  • Revision ID: pqm@pqm.ubuntu.com-20160115092149-z5f4sfq3jvaz0enb
(vila) Fix autodoc runner when LANG=C. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    repository,
28
28
    remote,
29
29
    )
30
 
from bzrlib.repofmt.pack_repo import (
 
30
from bzrlib.repofmt.knitpack_repo import (
31
31
    RepositoryFormatKnitPack5,
32
32
    )
33
33
from bzrlib.repofmt.groupcompress_repo import (
34
 
    RepositoryFormatCHK1,
 
34
    RepositoryFormat2a,
35
35
    )
36
36
from bzrlib.tests import (
37
37
    multiply_tests,
61
61
        # with the chosen backing format.
62
62
        if isinstance(format, remote.RemoteRepositoryFormat):
63
63
            with_support = dict(scenario_info)
64
 
            with_support['repository_format'] = RepositoryFormatCHK1()
 
64
            with_support['repository_format'] = RepositoryFormat2a()
65
65
            supported_scenarios.append((test_name + "(Supported)", with_support))
66
66
            no_support = dict(scenario_info)
67
67
            no_support['repository_format'] = RepositoryFormatKnitPack5()