equal
deleted
inserted
replaced
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) |
|