Path 1: 782 calls (1.0)

Counter (782)

list (562) [] (220)

list (562) [] (220)

1def _check_output_text(
2        self,
3        _: MessageCounter,
4        expected_output: list[OutputLine],
5        actual_output: list[OutputLine],
6    ) -> None:
7        """This is a function because we want to be able to update the text in
8        LintModuleOutputUpdate.
9        """
10        assert expected_output == actual_output, self.error_msg_for_unequal_output(
11            expected_output, actual_output
12        )