357
357
this_text = ("a\n"*10+"b\n" * 10).splitlines(True)
358
358
other_text = ("a\n"*10+"c\n"+"b\n" * 8 + "c\n").splitlines(True)
359
359
m3 = Merge3(base_text, other_text, this_text)
360
m_lines = m3.merge_lines('OTHER', 'THIS', reprocess=True,
360
m_lines = m3.merge_lines('OTHER', 'THIS', reprocess=True,
362
362
self.assertRaises(CantReprocessAndShowBase, list, m_lines)