~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2010-11-24 16:01:57 UTC
  • mfrom: (4597.13.7 cleanup)
  • mto: This revision was merged to the branch mainline in revision 5558.
  • Revision ID: v.ladeuil+lp@free.fr-20101124160157-kieuslo7wj9abdmb
Merge cleanup into 638451-malformed

Show diffs side-by-side

added added

removed removed

Lines of Context:
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()