(self, expected, result, msg)
| 303 | (self.expect_set_no, self.exc_info)) |
| 304 | |
| 305 | def check_equal(self, expected, result, msg): |
| 306 | if expected == result: |
| 307 | return |
| 308 | self.raise_not_expected("%s at expect_set item %d, got '%s'" % |
| 309 | (msg, self.expect_set_no, result)) |
| 310 | |
| 311 | def check_lno_name(self): |
| 312 | """Check the line number and function co_name.""" |
no test coverage detected