mercurial/testing/revlog.py
changeset 51250 96e05f1a99bd
parent 51241 03fdd4d7b5bd
child 51251 f94c10334bcb
equal deleted inserted replaced
51249:fd1aa5e18f75 51250:96e05f1a99bd
    55         if data is None:
    55         if data is None:
    56             data = data_non_inlined
    56             data = data_non_inlined
    57         # not inheriting RevlogBasedTestCase to avoid having a
    57         # not inheriting RevlogBasedTestCase to avoid having a
    58         # `parseindex` method that would be shadowed by future subclasses
    58         # `parseindex` method that would be shadowed by future subclasses
    59         # this duplication will soon be removed
    59         # this duplication will soon be removed
    60         cindex = cparsers.parse_index2(data, False)[0]
    60         return MixedIndex(data, REVLOGV1)
    61         return MixedIndex(cindex, data, REVLOGV1)