~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Richard Wilbur
  • Date: 2016-02-04 19:07:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6618.
  • Revision ID: richard.wilbur@gmail.com-20160204190728-p0zvfii6zase0fw7
Update COPYING.txt from the original http://www.gnu.org/licenses/gpl-2.0.txt  (Only differences were in whitespace.)  Thanks to Petr Stodulka for pointing out the discrepancy.

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()