(self)
| 341 | get_task_logger('celery') |
| 342 | |
| 343 | def test_renaming_task_logger(self): |
| 344 | with pytest.raises(RuntimeError): |
| 345 | get_task_logger('celery.task') |
| 346 | |
| 347 | |
| 348 | class MockLogger(logging.Logger): |
nothing calls this directly
no test coverage detected