(*args)
| 297 | warnings.filterwarnings('ignore', message='not matched', category=Warning, lineno=lineno) |
| 298 | # Override showwarning() so that we don't actually show warnings. |
| 299 | def showwarning(*args): |
| 300 | pass |
| 301 | warnings.showwarning = showwarning |
| 302 | |
| 303 | def tearDown(self): |
no outgoing calls
no test coverage detected