(self)
| 337 | return get_task_logger('test_task_logger') |
| 338 | |
| 339 | def test_renaming_base_logger(self): |
| 340 | with pytest.raises(RuntimeError): |
| 341 | get_task_logger('celery') |
| 342 | |
| 343 | def test_renaming_task_logger(self): |
| 344 | with pytest.raises(RuntimeError): |
nothing calls this directly
no test coverage detected