(self)
| 3241 | self.check_note(exc, "^{}$".format(msg)) |
| 3242 | |
| 3243 | def test_non_str_arg(self): |
| 3244 | self.check_note(RuntimeError(1), "1") |
| 3245 | |
| 3246 | def test_multiple_args(self): |
| 3247 | msg_re = r"^\('a', 'b', 'c'\)$" |
nothing calls this directly
no test coverage detected